vote up -1 vote down star

A binary tree can be encoded using two functions l and r such that for a node n, l(n) give the left child of n , r(n) give the right child of n.

A branch of a tree is a path from the root to a leaf, the length of a branch to a particular leaf is the number of arcs on the path from the root to that leaf.

Let MinBranch(l,r,x) be a simple recursive algorithm for taking a binary tree encoded by the l and r functions together with the root node x for the binary tree and returns the length of the shortest branch of the binary tree.

Give the pseudocode for this algorithm.

flag
I don’t think so. – Bombe Aug 27 at 5:46
3  
You have to ask a real question in order for someone to be able to help you with your homework. What is it that you need help with? Is it that you don't understand the assignment? – Guffa Aug 27 at 5:53

2 Answers

vote up 1 vote down

Suppose I tell you that the shortest path from l(x) to a leaf is 5 nodes, and the shortest path from r(x) to a leaf is 8 nodes. What can you tell me about the shortest path from x to a leaf?

link|flag
vote up 1 vote down

It should be something along these lines:

MinBranch(l,r,x)
 if(leaf(x))
   return 0;
 return 1 + min(MinBranch(l,r,l(x)),MinBranch(l,r,r(x)))

Note that I did not know how you can test for a leaf, so I assumed a method leaf(x).

The basic idea here would be to check if we are at a leaf (the if-clause) and then return a length of 0 (= we found the end of the path). The recursion is wrapped by 'min', which ensures that we only return the minimum length of the current sub-tree.

link|flag
Not the most beautiful solution, and misses one case. – starblue Aug 27 at 8:26
@starblue: true, fixed. – __roland__ Aug 27 at 13:14

Your Answer

Get an OpenID
or

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