The Master Theorem
Learn the master theorem of the divide-and-conquer algorithm.
We'll cover the following...
Divide-and-conquer algorithm
A typical divide-and-conquer algorithm solves a problem of size as follows:
Divide: Break the problem into problems of size at most and solve them recursively. We assume that and .
Conquer: Combine the answers found by recursive calls to an answer for the initial problem.
Therefore, the algorithm makes recursive calls to problems of size .
Note: does not necessarily divide , so instead of , we should usually write . Still, we write ; it simplifies the notation and does not break the analysis.
Assume that everything that is done outside of recursive calls takes time where is a non-negative constant. This includes preparing the recursive calls and combining the results.
Since this is a recursive algorithm, we also need to specify conditions under which a problem is solved directly rather than recursively (with no such base case, a recursion would never stop). This usually happens when becomes small. For simplicity, we assume that it is and that the running time of the algorithm is equal to in this case.
Therefore, by denoting the running time of the algorithm on problems of size by , we get the following recurrence relation on :
Below, we show that we can find out the growth rate of by looking at parameters , , and . Before doing this, we illustrate how this recurrence relation captures some well-known algorithms.
Binary search
To search for a key in a sorted sequence of length , the binary search algorithm makes a single recursive call for a problem of size . Outside this recursive call, it spends time . Therefore, . Therefore,
The running time of the binary search algorithm is since there are at most recursive calls. Another way to see this is to unwind the recurrence relation as shown below, that is, to apply the same equality to , , and so on:
Here, is a constant from the term.
Merge sort
To sort an array of length , the algorithm breaks it into two subarrays of size , sorts them recursively, and merges the results. The time spent by the algorithm before and after two recursive calls is . Therefore, . Therefore,
Unwinding gives :
...