Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i am studying the binary tree properties and i encountered such a task to solve by myself. we know that a binary tree is balanced when:

  1. The number of inner nodes in the left subtree and the number of inner nodes in the right subtree differs by at most 1.

  2. For any two leaves the difference of the depth is at most 1.

Now i want to give two pseudocode algorithm for them, lets say balanced1 and balanced2:

For balanced1 i solved it in this way (simple compare the height of left and right subtree recursively.

balanced1(root):

 /* If tree is empty then return true */
 if root = NIL then 
   return 1; 

 * Get the height of left and right sub trees */
 lh := height(root.left);
 rh := height(root.right);

 if AbsoluteValue(lh-rh) <= 1 AND isBalanced(root.left) AND isBalanced(root.right) then
   return 1;

 /* If we reach here then tree is not height-balanced */
 return 0;

Someone an help me to get the function balanced2? We know that the depth of a node (leave in our case) is the number of edges from the node to the tree's root node. So what would be a possible solution?

share|improve this question
Solution two sounds like it needs to be an implementation of a Red Black Tree. – Boris the Spider Feb 17 at 14:28

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.