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!