Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
courses:cs211:winter2012:journals:ian:chapter5 [2012/03/07 05:18] – created sturdyi | courses:cs211:winter2012:journals:ian:chapter5 [2012/03/14 04:08] (current) – sturdyi | ||
---|---|---|---|
Line 5: | Line 5: | ||
* No questions. | * No questions. | ||
* No complaints. | * No complaints. | ||
+ | |||
+ | ====== 5.2 Further Recurrence Relations ====== | ||
+ | |||
+ | * Recursive algorithms can be classified by the form of their recurrence relation, the divisions they make and complexity of the combination. A generalization of the quicksort recurrence is T(n) <= qT(n/2)+cn; total work in level j is (q/2)^jcn, and the implied summation simplifies to O(n^(log_2q)-1). One can identify such relations, where what to plug in is not obvious, by plugging in an expression with extra degrees of freedom, and then identifying values that complete the substitution. A different extension is given by T(n) <= 2T(n/ | ||
+ | * No insights. | ||
+ | * No questions. | ||
+ | * No complaints. | ||
+ | |||
+ | ====== 5.3 Counting Inversions ====== | ||
+ | |||
+ | * The brute force means of counting inversions between two ordered lists is to look at each pair, in O(n^2) time. To improve on that, divide the list being analyzed in two and recursively sort and count inversions within each sublist. Then combine the two into a sorted list, counting inversions (pairs where a number in the first sublist is greater than a number in the second; in other words, each time an element is taken from the second sublist, add the number of elements not yet taken from the first). Since this is a linear-time rider on the linear-time combination of mergesort, this algorithm shares mergesort' | ||
+ | * No insights. | ||
+ | * No questions. | ||
+ | * No complaints. | ||
+ | |||
+ | ====== 5.4 Finding the Closest Pair of Points ====== | ||
+ | |||
+ | * Finding the closest pair among n points by brute force entails looking at each of the O(n^2) pairs. To improve on that, sort the points (separately along each axis), then divide the space in half (with half the points on each side) and recursively find the closest pair in each half. Any closer pair must span the dividing line, and thus if d is the minimum of the distances of the closest pairs in the halves, only points within d of the center need be considered. Now given a list of the points within that 2d rectangle about the center sorted by y-coordinate, | ||
+ | * No insights. | ||
+ | * This chapter seems really focused on improving on O(n^2) runtimes. Having seen the difference between O(n log n) and O(n^2) in practice (in Economics I have Ns ranging above 10e7), I am not complaining. But why the fixation on polynomial time as the standard for efficiency, given how often brute force achieves it and how often we attempt to improve on it? | ||
+ | * No complaints. | ||
+ | |||
+ | ====== 5.5 Integer Multiplication ====== | ||
+ | |||
+ | * The conventional multiply-and-carry multiplication algorithm is O(n^2) for multiplying two n digit numbers (n nx1 multiplications, | ||
+ | * No insights. | ||
+ | * No questions. | ||
+ | * No complaints. I appreciated their giving the derivation of the second identity. | ||
+ | |||
+ | |||