Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
courses:cs211:winter2012:journals:jeanpaul:chapter_fivesection_iv [2012/03/12 22:31] – created mugabej | courses:cs211:winter2012:journals:jeanpaul:chapter_fivesection_iv [2012/03/13 01:58] (current) – [The Algorithm] mugabej | ||
---|---|---|---|
Line 9: | Line 9: | ||
\\ | \\ | ||
+ | Let P = {p< | ||
+ | For two points, p< | ||
+ | Our Goal: Find a pair of points (p< | ||
+ | **Our plan:** apply the divide and conquer style used in Mergesort by finding the closest pair among the points in the left half of P and the closest pair among the points on the right half of P, we then get the overall solution in O(n) time. With this plan, we can get an O(nlogn) running time.\\ | ||
+ | ==== The Algorithm ==== | ||
+ | \\ | ||
+ | >>>>>>>>>>>>>>>>>>>>>>>>> | ||
+ | >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> | ||
+ | >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> | ||
+ | >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> | ||
+ | >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> | ||
+ | >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> | ||
+ | >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> | ||
+ | >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> | ||
+ | >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> | ||
+ | >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> | ||
+ | >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> | ||
+ | \\ | ||
+ | The running time of this algorithm is O(nlogn).\\ | ||
+ | I give this section 8/10 |