vote up 2 vote down star

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

edit: sorry, i meant to add how to get the height of the recursion tree from the recurrence relation.

flag

Shooting from my bum here, but I don't see a difference. Why would you think there's a difference? In the abstract, they are both trees... – Paul Nathan Aug 28 at 15:58

3 Answers

vote up 0 vote down

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).

link|flag
vote up 0 vote down

Firstly, if this is a homework question, please mark it as such. The images you link to imply that you're in CS 455, with Professor Wisman. :)

The main hint I'll give is this: The height of the tree is obviously determined by when you get to the "leaves". The leaves of a tree modelling the recurrence relation of a function are the base case. Thus, I would look towards seeing how "quickly" N can shrink to the base case.

link|flag
This is not homework :) Personal study. The image I linked to was the most relevant on google images. Should have cleared that up beforehand, sorry! – Chris Aug 29 at 15:21
Sorry, added the comment too early. Your answer definitely makes sense. However, it is not usually the case that you can follow the leaves all of the way down. Creating the first few branches is trivial. It's from there on that has me a bit confused :) – Chris Aug 29 at 15:23
vote up 1 vote down

The height of the recursion tree depends on the recursive algorithm in question. Not all divide and conquer algorithms have uniformed height trees, just as not all tree structures have uniform heights. If you cannot determine the maximum possible height of the algorithm, or if you need to calculate the actual height of the tree at run time, you can use a variable global to the recursive function, increment it upon the entry to the function, and decrement it upon the function exit. This variable will indicate the current level of the recursive procedure. If necessary, you can maintain the maximum value of this variable in a second variable.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.