How does one go about determining the height of a recursion tree, built when dealing with recurrence run-times? How does it differ from determining the height of a regular tree?
alt text http://homepages.ius.edu/rwisman/C455/html/notes/Chapter4/ch4-9.gif
edit: sorry, i meant to add how to get the height of the recursion tree from the recurrence relation.
If recurrence is in the form of T(n) = aT(n/b) + f(n) then the depth of the tree is log base b of n.
For example, 2T(n/2) + n recurrence would have tree of depth lg(n) (log base 2 of n).