I am reading on AVL tres in Data structures and analysis by Weiss

One of the balance condition would insist that every node must have left and right subtrees of the same height. If the height of an empty subtree is defined to be -1 (as is usual), then only perfectly balanced trees of ((2 to power of k) - 1) nodes would satisfy this criterion. Thus, although this guarantees trees of small depth, the balance condition is too rigid to be useful and needs to be relaxed.

Request help in understanding above text by giving an example 1. like how author came with ((2 to power of k) - 1) nodes would satisfy this criteria? 2. What does statement "although this guarantees trees of small depth, the balance condition is too rigid to be useful and needs to be relaxed" mean ?

Thanks!

link|improve this question

75% accept rate
feedback

2 Answers

A perfectly balanced tree, as described here, has the same number of nodes on either side of any node. Trees that can satisfy this have total node counts of:

1: *

3: *
  / \
 *   *

7:  *
   / \
  *   *
 / \ / \
 * * * *

etc

Mathematically, this means the number of nodes in the tree is 2k-1, where k is an integer.

"Small depth" means trees of this form have the largest possible number of nodes for their given depth: adding one more node must increase the depth.

link|improve this answer
feedback

1) a full binary tree has 1 + 2 + 4 + ... + 2^(k-1) vertices, this sums to exactly to 2^k -1

2)the balance factor criteria as is, is not enough to ensure O(logn) maximum height, more work needs to be done to show that the tree is indeed balanced from this rigid condition.
The relaxation we make to prove that AVL tree is indeed balanced, is the fact that the worst balanced tree is a fibonacci tree, which height is O(logn).

more read why a fibonacci tree is the worst case fro an AVL tree: http://www.cs.sunysb.edu/~skiena/214/lectures/lect24/lect24.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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