8.3 Divide-and-Conquer Algorithms and Recurrence Relations
p548
Ex: 1, 3, 5, 9
EXAMPLE 1
Binary Search We introduced a binary search algorithm in Section 3.1. This binary search algorithm reduces the search for an element in a search sequence of size to the binary search for this element in a search sequence of size , when is even. (Hence, the problem of size has been reduced to one problem of size .) Two comparisons are needed to implement this reduction (one to determine which half of the list to use and the other to determine whether any terms of the list remain). Hence, if is the number of comparisons required to search for an element in a search sequence of size , then
EXAMPLE 3
Merge Sort The merge sort algorithm (introduced in Section 5.4) splits a list to be sorted with n items, where n is even, into two lists with n/2 elements each, and uses fewer than n comparisons to merge the two sorted lists of n/2 items each into one sorted list. Consequently, the number of comparisons used by the merge sort to sort a list of n elements is less than M(n), where the function M(n) satisfies the divide-and-conquer recurrence relation
MASTER THEOREM Let be an increasing function that satisfies the recurrence relation
whenever , where is a positive integer, is an integer greater than 1, and and are real numbers with positive and nonnegative. Then
EXAMPLE 9
Complexity of Merge Sort In Example 3 we explained that the number of comparisons used by the merge sort to sort a list of n elements is less than , where . By the master theorem (Theorem 2) we find that is , which agrees with the estimate found in Section 5.4.
Homework
p535: 34, 36 (Deprecated)
34. Find when , where satisfies the recurrence relation , with .
36. Find when , where satisfies the recurrence relation with .