Divide, conquer and combine.

Divide-and-Conquer

There're 3 stages when performing any Divide-and-Conquer algorithms:

Some interesting problem solved with this thought:

Multiplication of Large Integers

Given two binary large integers and calculate their multiplication. We can try to divide the given numbers into parts to reduce the complexity of calculation.

Untitled

In this way $T(n)=4T(n/2)+\Theta(n)$, then $T(n)=O(n^2)$. And if we optimize it by using $(A-B)(D-C)+AC+BD$ to replace $AD+BC$, then $T(n)=3T(n/2)+\Theta(n)=O(n^{1.6})$, for we only need to calculate 3 multiplications instead of 4.

Checkerboard Cover Problem

Use L-shaped cards to cover a whole $2^k\times2^k$ checkerboard without overlapping.

Untitled

This problem can be solved recursively with a Divide-and-Conquer method:

Untitled

And the complexity:

Untitled

Sorting Algorithms