It seems when new node is inserted(whose complexity is O(logN)), the whole tree needs to be re-balanced.

What's the complexity of re-balancing?

link|improve this question

53% accept rate
feedback

1 Answer

It's the height of the tree. It's not rebalanced in the sense of a binary tree. When you add a node, if that causes a split you insert a key into the node above. If that causes as split, then you do the same thing one level up, etc., until you get to the root. So the complexity is O(logN).

link|improve this answer
How is it rebalanced in the sense of a binary tree? – asker Sep 2 '11 at 6:01
In a height balanced binary tree (AVL tree), an insertion can affect more nodes than the ancestors of the leaf node. Here's a good animation: cs.jhu.edu/~goodrich/dsa/trees/avltree.html – xpda Sep 2 '11 at 14:18
feedback

Your Answer

 
or
required, but never shown

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