Basic Idea

Handles recurrences of the form: T(n) = a T(n/b)+f(n). where $a \ge 1$, b > 1, and f(n) is some function.

We gloss over some technicalities:

This is ok because these details get swallowed up by the big O or big Theta that we are eventually going to wrap around things anyway.


next up previous
Next: The Master Tree Up: MASTER METHOD Previous: MASTER METHOD