Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
courses:cs211:winter2012:journals:garrett:entries:week_7 [2012/03/07 01:14] – added titles garrettheath4 | courses:cs211:winter2012:journals:garrett:entries:week_7 [2012/03/07 04:00] (current) – fixed equation scaling garrettheath4 | ||
---|---|---|---|
Line 2: | Line 2: | ||
===== Chapter Scores ===== | ===== Chapter Scores ===== | ||
- | * **Readability Score**: | + | * **Readability Score**: |
- | * **Interest Score**: | + | * **Interest Score**: |
===== Readings ===== | ===== Readings ===== | ||
==== Chapter 5: Divide and Conquer ==== | ==== Chapter 5: Divide and Conquer ==== | ||
=== 5.1: A First Recurrence - The Mergesort Algorithm === | === 5.1: A First Recurrence - The Mergesort Algorithm === | ||
+ | This section of the reading describes mergesort as the most canonical divide-and-conquer algorithm. | ||
+ | Divide-and-conquer algorithms are a little less straightforward in computing an algorithm' | ||
+ | | '' | ||
+ | | '' | ||
=== 5.2: Further Recurrence Relations === | === 5.2: Further Recurrence Relations === | ||
+ | A generalized form of the recurrence relation equation mentioned above is: | ||
+ | | '' | ||
+ | | '' | ||
+ | where '' | ||
+ | == Case q > 2 == | ||
+ | {{: | ||
+ | |||
+ | == Case q = 1 == | ||
+ | {{: | ||
+ | |||
+ | == Quadratic Split and Reduce == | ||
+ | {{: | ||
=== 5.3: Counting Inversions === | === 5.3: Counting Inversions === | ||
+ | A good way to quantify the differences between two comparable sets of data is to determine the degrees of difference between the two. A generalized way to do this is to calculate the number of inversions between the two. Assuming the data in question is organized like two lists of the same set of elements, an **inversion** is the minimum number of times that two elements need to trade places in the first list to become the second list. For example, if you have the following list: | ||
+ | ^2^4^1^3^5^ | ||
+ | and you are comparing it to: | ||
+ | ^1^2^3^4^5^ | ||
+ | you could quantify the differences between them by saying that it would take 3 inversions to get from the first list of data to the second list of data: | ||
+ | ^2^4^1^3^5^ | ||
+ | |1|4|2|3|5| | ||
+ | |1|2|4|3|5| | ||
+ | ^1^2^3^4^5^ | ||
+ | We can use the algorithm on __Pages 224-225__ to count inversions. | ||
+ | {{: | ||
~~DISCUSSION~~ | ~~DISCUSSION~~ |