This is an old revision of the document!


Chapter 5

Divide and conquer

  • analyzing involves a “recurrence relation”

5.1 A first Recurrence: The Mergesort Algorithm

  • We've seen mergesort before. Basic example for divide and conquer
  • divide the input into two pieces of equal size and solve the two subprobles with recursion.
    • basically you continue to divide until you hit the base case.
    • this should give a faster running time then other ways to solve.
  • 5.1 - For some constant c, T(n) ⇐ to 2T(n/2) + cn when n > 2 and T(2) ⇐ c
    • this is what a the running time needs to satisfy for a recurrrence relation

Approaches to solving recurrences

  • natural way is to “unroll” the recursion. identify a pattern after looking at first few levels and go from there.
  • Guess and check for a solution.

Unrolling the mergesort solution

  • we did this in class
  • see page1 212 - 213
  • 5.2 T(n) will be bounded by O(nlogn)

Subsituting into the mergesort recurrence - guess and check

  • proof by induction that the running time is right

An approach using partial substitution

  • this seems less helpful. the book calls it weaker
  • but good if we don't know the exact constants.
courses/cs211/winter2012/journals/carrie/ch5.1330707860.txt.gz · Last modified: 2012/03/02 17:04 by hopkinsc
CC Attribution-Noncommercial-Share Alike 4.0 International
Driven by DokuWiki Recent changes RSS feed Valid CSS Valid XHTML 1.0