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

It's been a while from those school years. Got a job as IT specialist at a hospital. Trying to move to do some actual programming now. I'm working on binary trees now, and I was wondering what would be the best way to determine if the tree is height-balanced.

I was thinking of something along this:

	public boolean isBalanced(Node root){
            if(root==null){
	            return true;  //tree is empty
	}
	else{
		int lh = root.left.height();
		int rh = root.right.height();
		if(lh - rh > 1 || rh - lh > 1){
			return false;
		}
	}
	return true;
}

Is this a good implementation? or am I missing something?

share|improve this question
I love this question! Now I have to go back to my Knuth. :) – JP Alioto Apr 13 '09 at 2:10
1  
you should probably make that a static method – twolfe18 Feb 2 '10 at 5:10

19 Answers

Stumbled across this old question while searching for something else. I notice that you never did get a complete answer.

The way to solve this problem is to start by writing a specification for the function you are trying to write.

Specification: A well-formed binary tree is said to be "height-balanced" if (1) it is empty, or (2) its left and right children are height-balanced and the height of the left tree is within 1 of the height of the right tree.

Now that you have the specification, the code is trivial to write. Just follow the specification:

IsHeightBalanced(tree)
    return (tree is empty) or 
           (IsHeightBalanced(tree.left) and
            IsHeightBalanced(tree.right) and
            abs(Height(tree.left) - Height(tree.right)) <= 1)

Translating that into the programming language of your choice should be trivial.

Bonus exercise: this naive code sketch traverses the tree far too many times when computing the heights. Can you make it more efficient?

Super bonus exercise: suppose the tree is massively unbalanced. Like, a million nodes deep on one side and three deep on the other. Is there a scenario in which this algorithm blows the stack? Can you fix the implementation so that it never blows the stack, even when given a massively unbalanced tree?

UPDATE: Donal Fellows points out in his answer that there are different definitions of 'balanced' that one could choose. For example, one could take a stricter definition of "height balanced", and require that the path length to the nearest empty child is within one of the path to the farthest empty child. My definition is less strict than that, and therefore admits more trees.

One can also be less strict than my definition; one could say that a balanced tree is one in which the maximum path length to an empty tree on each branch differs by no more than two, or three, or some other constant. Or that the maximum path length is some fraction of the minimum path length, like a half or a quarter.

It really doesn't matter usually. The point of any tree-balancing algorithm is to ensure that you do not wind up in the situation where you have a million nodes on one side and three on the other. Donal's definition is fine in theory, but in practice it is a pain coming up with a tree-balancing algorithm that meets that level of strictness. The performance savings usually does not justify the implementation cost. You spend a lot of time doing unnecessary tree rearrangements in order to attain a level of balance that in practice makes little difference. Who cares if sometimes it takes forty branches to get to the farthest leaf in a million-node imperfectly-balanced tree when it could in theory take only twenty in a perfectly balanced tree? The point is that it doesn't ever take a million. Getting from a worst case of a million down to a worst case of forty is usually good enough; you don't have to go all the way to the optimal case.

share|improve this answer
4  
+1 for only correct answer, I can't believe no one was able to answer this for 8 months... – BlueRaja - Danny Pflughoeft Feb 1 '10 at 20:09
Answer to the "exercises" below… – Potatoswatter Feb 2 '10 at 2:56
Answered Bonus exercise below. – Brian Feb 2 '10 at 14:25
sdk's answer below seems to be right and only makes 2 tree traversals so is O(n). Unless I'm missing somethinig, does that not solve at least your first bonus question. You can of course also use dynamic programming and your solution to cache intermediate heights – Aly May 10 '11 at 13:01
Theoretically, I would have to side with Donal Fellows' definition still. – Dhruv Gairola May 6 '12 at 16:30

This only determines if the top level of the tree is balanced. That is, you could have a tree with two long branches off the far left and far right, with nothing in the middle, and this would return true. You need to recursively check the root.left and root.right to see if they are internally balanced as well before returning true.

share|improve this answer

Bonus exercise response. The simple solution. Obviously in a real implementation one might wrap this or something to avoid requiring the user to include height in their response.

IsHeightBalanced(tree, out height)
    if (tree is empty)
        height = 0
        return true
    balance = IsHeightBalanced(tree.left, heightleft) and IsHeightBalanced(tree.right, heightright)
    height = max(heightleft, heightright)+1
    return balance and abs(heightleft - heightright) <= 1     
share|improve this answer
2  
Nicely done! ------- – Eric Lippert Feb 2 '10 at 14:50

Balance is a truly subtle property; you think you know what it is, but it's so easy to get wrong. In particular, even Eric Lippert's (good) answer is off. That's because the notion of height is not enough. You need to have the concept of minimum and maximum heights of a tree (where the minimum height is the least number of steps from the root to a leaf, and the maximum is... well, you get the picture). Given that, we can define balance to be:

A tree where the maximum height of any branch is no more than one more than the minimum height of any branch.

(This actually implies that the branches are themselves balanced; you can pick the same branch for both maximum and minimum.)

All you need to do to verify this property is a simple tree traversal keeping track of the current depth. The first time you backtrack, that gives you a baseline depth. Each time after that when you backtrack, you compare the new depth against the baseline

  • if it's equal to the baseline, then you just continue
  • if it is more than one different, the tree isn't balanced
  • if it is one off, then you now know the range for balance, and all subsequent depths (when you're about to backtrack) must be either the first or the second value.

In code:

class Tree {
    Tree left, right;
    static interface Observer {
        public void before();
        public void after();
        public boolean end();
    }
    static boolean traverse(Tree t, Observer o) {
        if (t == null) {
            return o.end();
        } else {
            o.before();
            try {
                if (traverse(left, o))
                    return traverse(right, o);
                return false;
            } finally {
                o.after();
            }
        }
    }
    boolean balanced() {
        final Integer[] heights = new Integer[2];
        return traverse(this, new Observer() {
            int h;
            public void before() { h++; }
            public void after() { h--; }
            public boolean end() {
                if (heights[0] == null) {
                    heights[0] = h;
                } else if (Math.abs(heights[0] - h) > 1) {
                    return false;
                } else if (heights[0] != h) {
                    if (heights[1] == null) {
                        heights[1] = h;
                    } else if (heights[1] != h) {
                        return false;
                    }
                }
                return true;
            }
        });
    }
}

I suppose you could do this without using the Observer pattern, but I find it easier to reason this way.


[EDIT]: Why you can't just take the height of each side. Consider this tree:

        /\
       /  \
      /    \
     /      \_____
    /\      /     \_
   /  \    /      / \
  /\   C  /\     /   \
 /  \    /  \   /\   /\
A    B  D    E F  G H  J

OK, a bit messy, but each side of the root is balanced: C is depth 2, A, B, D, E are depth 3, and F, G, H, J are depth 4. The height of the left branch is 2 (remember the height decreases as you traverse the branch), the height of the right branch is 3. Yet the overall tree is not balanced as there is a difference in height of 2 between C and F. You need a minimax specification (though the actual algorithm can be less complex as there should be only two permitted heights).

share|improve this answer
Ah, good point. You could have a tree which is h(LL)=4, h(LR)=3, h(RL)=3, h(RR)=2. Thus, h(L)=4 and h(R)=3, so it would appear balanced to the earlier algorithm, but with a max/min depth of 4/2, this is not balanced. This would probably make more sense with a picture. – Tim Apr 7 '10 at 22:04
That's what I've just added (with the world's nastiest ASCII graphic tree). – Donal Fellows Apr 7 '10 at 22:10

What balanced means depends a bit on the structure at hand. For instance, A B-Tree cannot have nodes more than a certain depth from the root, or less for that matter, all data lives at a fixed depth from the root, but it can be out of balance if the distribution of leaves to leaves-but-one nodes is uneven. Skip-lists Have no notion at all of balance, relying instead on probability to achieve decent performance. Fibonacci trees purposefully fall out of balance, postponing the rebalance to achieve superior asymptotic performance in exchange for occasionally longer updates. AVL and Red-Black trees attach metadata to each node to attain a depth-balance invariant.

All of these structures and more are present in the standard libraries of most common programming systems (except python, RAGE!). Implementing one or two is good programming practice, but its probably not a good use of time to roll your own for production, unless your problem has some peculiar performance need not satisfied by any off-the-shelf collections.

share|improve this answer

The definition of a height-balanced binary tree is:

Binary tree in which the height of the two subtrees of every node never differ by more than 1.

So, An empty binary tree is always height-balanced.
A non-empty binary tree is height-balanced if:

  1. Its left subtree is height-balanced.
  2. Its right subtree is height-balanced.
  3. The difference between heights of left & right subtree is not greater than 1.

Consider the tree:

    A
     \ 
      B
     / \
    C   D

As seen the left subtree of A is height-balanced (as it is empty) and so is its right subtree. But still the tree is not height-balanced as condition 3 is not met as height of left-subtree is 0 and height of right sub-tree is 2.

Also the following tree is not height balanced even though the height of left and right sub-tree are equal. Your existing code will return true for it.

       A
     /  \ 
    B    C
   /      \
  D        G
 /          \
E            H

So the word every in the def is very important.

This will work:

int height(treeNodePtr root) {
        return (!root) ? 0: 1 + MAX(height(root->left),height(root->right));
}

bool isHeightBalanced(treeNodePtr root) {
        return (root == NULL) ||
                (isHeightBalanced(root->left) &&
                isHeightBalanced(root->right) &&
                abs(height(root->left) - height(root->right)) <=1);
}

Ideone Link

share|improve this answer
So this answer helped me a lot. However, I found the free [MIT intro to algorithms course] seems to contradict condition 3. Page 4 shows a RB tree where the height of the left branch is 2 and the right branch is 4. Can you offer some clarification to me? Perhaps I don't get the definition of a subtree. [1]:ocw.mit.edu/courses/electrical-engineering-and-computer-science/… – i8abug Aug 30 '11 at 17:45
The difference seems to come from this definition in the course notes. All simple paths from any node x to a descendant leaf have the same number of black nodes = black-height(x) – i8abug Aug 30 '11 at 17:54
Just to follow up, I found a definition that changes point (3) in your answer to "every leaf is 'not more than a certain distance' away from the root than any other leaf". This seems to satisfy both cases. Here is the link from some random course ware – i8abug Aug 31 '11 at 3:26

Balancing usually depends on the length of the longest path on each direction. The above algorithm is not going to do that for you.

What are you trying to implement? There are self-balancing trees around (AVL/Red-black). In fact, Java trees are balanced.

share|improve this answer

If this is for your job, I suggest:

  1. do not reinvent the wheel and
  2. use/buy COTS instead of fiddling with bits.
  3. Save your time/energy for solving business problems.
share|improve this answer
#include <iostream>
#include <deque>
#include <queue>

struct node
{
    int data;
    node *left;
    node *right;
};

bool isBalanced(node *root)
{
    if ( !root)
    {
        return true;
    }

    std::queue<node *> q1;
    std::queue<int>  q2;
    int level = 0, last_level = -1, node_count = 0;

    q1.push(root);
    q2.push(level);

    while ( !q1.empty() )
    {
        node *current = q1.front();
        level = q2.front();

        q1.pop();
        q2.pop();

        if ( level )
        {
            ++node_count;
        }

                if ( current->left )
                {
                        q1.push(current->left);
                        q2.push(level + 1);
                }

                if ( current->right )
                {
                        q1.push(current->right);
                        q2.push(level + 1);
                }

        if ( level != last_level )
        {
            std::cout << "Check: " << (node_count ? node_count - 1 : 1) << ", Level: " << level << ", Old level: " << last_level << std::endl;
            if ( level && (node_count - 1) != (1 << (level-1)) )
            {
                return false;
            }

            last_level = q2.front();
            if ( level ) node_count = 1;
        }
    }

    return true;
}

int main()
{
    node tree[15];

    tree[0].left  = &tree[1];
    tree[0].right = &tree[2];
    tree[1].left  = &tree[3];
    tree[1].right = &tree[4];
    tree[2].left  = &tree[5];
    tree[2].right = &tree[6];
    tree[3].left  = &tree[7];
    tree[3].right = &tree[8];
    tree[4].left  = &tree[9];   // NULL;
    tree[4].right = &tree[10];  // NULL;
    tree[5].left  = &tree[11];  // NULL;
    tree[5].right = &tree[12];  // NULL;
    tree[6].left  = &tree[13];
    tree[6].right = &tree[14];
    tree[7].left  = &tree[11];
    tree[7].right = &tree[12];
    tree[8].left  = NULL;
    tree[8].right = &tree[10];
    tree[9].left  = NULL;
    tree[9].right = &tree[10];
    tree[10].left = NULL;
    tree[10].right= NULL;
    tree[11].left = NULL;
    tree[11].right= NULL;
    tree[12].left = NULL;
    tree[12].right= NULL;
    tree[13].left = NULL;
    tree[13].right= NULL;
    tree[14].left = NULL;
    tree[14].right= NULL;

    std::cout << "Result: " << isBalanced(tree) << std::endl;

    return 0;
}
share|improve this answer
you might want to add some comments – jgauffin Dec 6 '11 at 19:06

Well, you need a way to determine the heights of left and right, and if left and right are balanced.

And I'd just return height(node->left) == height(node->right);

As to writing a height function, read: http://stackoverflow.com/questions/717725/understanding-recursion/717839#717839

share|improve this answer
You want left and right heights to be within 1, not necessarily equal. – Alex B Apr 13 '09 at 3:36

What kind of tree are you talking about? There are self-balancing trees out there. Check their algorithms where they determine if they need to reorder the tree in order to maintain balance.

share|improve this answer

So I changed the code, but it doesnt seem to be working. ps. I do have a method to determine the height. it's just height();

Any ideas on how to fix it.

public boolean heightBalanced(BinaryTree<T> tree){
	if(tree==null){
		return true;  //tree is empty
	}
	else if(tree.left!=null && tree.right!=null){
		int lh = tree.height(tree.left);
		int rh = tree.height(tree.right);
		if(lh - rh > 1 || rh - lh > 1){
			return false;
		}
		tree.heightBalanced(tree.left);
		tree.heightBalanced(tree.right);
	}
	return true;
	}
share|improve this answer
You're ignoring the return values from the 2 recursive calls to heightBalanced. Perhaps you want to return true only if they both return true. – Jesse Rusak Apr 13 '09 at 2:23
Your method returns tree if tree.left != null and tree.right = 'a huge subtree'. Also calling height(..) and heightBalanced(...) on the same subtree is rather inefficient. I would look at returning enough information from heightBalanced to avoid computing the height of each subtree twice – Rob Walker Apr 13 '09 at 3:12
Replace your else if block with an else block. Set lh and rh to 0 if the tree is null. Replace tree.heightBalanced(tree.left) with tree.left == null || tree.heightBalanced(tree.left). Do the same for tree.right. – Brian Feb 2 '10 at 14:35
You do have a method to determine height, but it (depending on how your tree works) might not be O(1). If it isn't, then using that method will make your algorithm asymptotically slower...though that might not matter for your purposes. – Brian Feb 2 '10 at 17:45
@user69514 Please edit this answer – amod0017 Mar 8 at 22:20

This is being made way more complicated than it actually is.

The algorithm is as follows:

  1. Let A = depth of the highest-level node
  2. Let B = depth of the lowest-level node

  3. If abs(A-B) <= 1, then the tree is balanced

share|improve this answer
public boolean isBalanced(TreeNode root)
{
    return (maxDepth(root) - minDepth(root) <= 1);
}

public int maxDepth(TreeNode root)
{
    if (root == null) return 0;

    return 1 + max(maxDepth(root.left), maxDepth(root.right));
}

public int minDepth (TreeNode root)
{
    if (root == null) return 0;

    return 1 + min(minDepth(root.left), minDepth(root.right));
}
share|improve this answer
I think this solution is not correct.If you pass a tree that has a single node i.e. a root it will return as maxDepth 1 (same for minDepth). The correct depth though should be 0.A tree's root has always 0 depth – Cratylus Dec 11 '11 at 14:26

Wouldn't this work?

return ( ( Math.abs( size( root.left ) - size( root.right ) ) < 2 );

Any unbalanced tree would always fail this.

share|improve this answer
2  
Many balanced trees will fail it, too. – Brian Feb 2 '10 at 20:45

Here is a version based on a generic depth-first traversal. Should be faster than the other correct answer and handle all the mentioned "challenges." Apologies for the style, I don't really know Java.

You can still make it much faster by returning early if max and min are both set and have a difference >1.

public boolean isBalanced( Node root ) {
    int curDepth = 0, maxLeaf = 0, minLeaf = INT_MAX;
    if ( root == null ) return true;
    while ( root != null ) {
        if ( root.left == null || root.right == null ) {
            maxLeaf = max( maxLeaf, curDepth );
            minLeaf = min( minLeaf, curDepth );
        }
        if ( root.left != null ) {
            curDepth += 1;
            root = root.left;
        } else {
            Node last = root;
            while ( root != null
             && ( root.right == null || root.right == last ) ) {
                curDepth -= 1;
                last = root;
                root = root.parent;
            }
            if ( root != null ) {
                curDepth += 1;
                root = root.right;
            }
        }
    }
    return ( maxLeaf - minLeaf <= 1 );
}
share|improve this answer
A nice attempt but it clearly does not work. Let x be a null node. Let a non-null tree node be denoted as (LEFT VALUE RIGHT). Consider the tree (x A (x B x)). "root" points to nodes A, B, A, B, A, B ... forever. Care to try again? A hint: it's actually easier without parent pointers. – Eric Lippert Feb 2 '10 at 3:18
@Eric: Oops, fixed (I think). Well, I'm trying to do this without O(depth) memory, and if the structure doesn't have parent pointers (it often does), you need to use a stack. – Potatoswatter Feb 2 '10 at 4:50
So what you're telling me is you'd rather use O(n) permanent memory in parent pointers to avoid allocating O(d) temporary memory, where log n <= d <= n ? This seems like a false economy. – Eric Lippert Feb 2 '10 at 6:20
Unfortunately, though you've fixed the problem with the traversal, there's a far bigger problem here. This does not test whether a tree is balanced, it tests whether a tree has all its leaves close to the same level. That's not the definition of "balanced" that I gave. Consider the tree ((((x D x) C x) B x) A x). Your code reports that this is "balanced" when it obviously is maximally unbalanced. Care to try again? – Eric Lippert Feb 2 '10 at 6:37
@Eric reply 1: not a false economy if you already use the parent pointers for something else. reply 2: sure, why not. This is a bizarre way of debugging… I shouldn't be blindly writing traversals of anything at 4 am… – Potatoswatter Feb 2 '10 at 10:48
show 10 more comments

Here's what i have tried for Eric's bonus exercise. I try to unwind of my recursive loops and return as soon as I find a subtree to be not balanced.

int heightBalanced(node *root){
    int i = 1;
    heightBalancedRecursive(root, &i);
    return i; 
} 

int heightBalancedRecursive(node *root, int *i){

    int lb = 0, rb = 0;

    if(!root || ! *i)  // if node is null or a subtree is not height balanced
           return 0;  

    lb = heightBalancedRecursive(root -> left,i);

    if (!*i)         // subtree is not balanced. Skip traversing the tree anymore
        return 0;

    rb = heightBalancedRecursive(root -> right,i)

    if (abs(lb - rb) > 1)  // not balanced. Make i zero.
        *i = 0;

    return ( lb > rb ? lb +1 : rb + 1); // return the current height of the subtree
}
share|improve this answer
    static boolean isBalanced(Node root) {
    //check in the depth of left and right subtree
    int diff = depth(root.getLeft()) - depth(root.getRight());
    if (diff < 0) {
        diff = diff * -1;
    }
    if (diff > 1) {
        return false;
    }
    //go to child nodes
    else {
        if (root.getLeft() == null && root.getRight() == null) {
            return true;
        } else if (root.getLeft() == null) {
            if (depth(root.getRight()) > 1) {
                return false;
            } else {
                return true;
            }
        } else if (root.getRight() == null) {
            if (depth(root.getLeft()) > 1) {
                return false;
            } else {
                return true;
            }
        } else if (root.getLeft() != null && root.getRight() != null && isBalanced(root.getLeft()) && isBalanced(root.getRight())) {
            return true;
        } else {
            return false;
        }
    }
}
share|improve this answer

Here's a non recursive solution. Doesn't calculate any height.

int heightBalanced(node* root){

  int flag = 0 ; // tells how many children a node does NOT have. valid values - 0, 1, or 2. if value = 2, then leaf node
  int parentFlag = 0 ; // tells how many children the parent of the current node DOESNOT have. valid values 0 or 1

  node *n;
  Stack s;  // can have this allocated in heap also
  s.push(root);

  do{        // do a pre order traversal using stack 

       n = s.pop();
       if (n -> right) s.push( n -> right);
       else flag++;

       if( n -> left) s.push( n -> left);
       else flag ++;

       if(parentFlag && flag != 2) // parent node has only one child and that child is not leaf. height not balanced.
         return 0;
       parentFlag = (flag == 1 ? 1 : 0) ; // parent flag is set only if flag is 1
       flag = 0 ;

   } while (!s.empty);

   return 1;

}

share|improve this answer
1  
ok..I just realized that this solution will not work if all nodes have 2 children but the leaves are at different levels! ignore it.. – Sudharsanan Apr 7 '10 at 22:21

Your Answer

 
discard

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

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