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:
The number of inner nodes in the left subtree and the number of inner nodes in the right subtree differs by at most 1.
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?