Divide, conquer and combine.
There're 3 stages when performing any Divide-and-Conquer algorithms:
Some interesting problem solved with this thought:
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.
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.
Use L-shaped cards to cover a whole $2^k\times2^k$ checkerboard without overlapping.
This problem can be solved recursively with a Divide-and-Conquer method:
And the complexity: