I saw this in some paper and someone argued that there can be at most log(n) times rotation when we delete a node of an AVL tree. I believe we can achieve this by generating an AVL tree as lopsided as possible. The problem is how to do this. This will help me a lot about researching the removal rotation thing. Thanks very much!

link|improve this question

feedback

1 Answer

up vote 6 down vote accepted

If you want to make a maximally lopsided AVL tree, you are looking for a Fibonacci tree, which is defined inductively as follows:

  • A Fibonacci tree of order 0 is empty.
  • A Fibonacci tree of order 1 is a single node.
  • A Fibonacci tree of order n + 2 is a node whose left child is a Fibonacci tree of order n and whose right child is a Fibonacci tree of order n + 1.

For example, here's a Fibonacci tree of order 5:

enter image description here

The Fibonacci trees represent the maximum amount of skew that an AVL tree can have, since if the balance factor were any more lopsided the balance factor of each node would exceed the limits placed by AVL trees.

You can use this definition to very easily generate maximally lopsided AVL trees:

function FibonacciTree(int order) {
    if order = 0, return the empty tree.
    if order = 1, create a single node and return it.
    otherwise:
        let left  = FibonacciTree(order - 2)
        let right = FibonacciTree(order - 1)
        return a tree whose left child is "left" and whose right child is "right."

Hope this helps!

link|improve this answer
Nice answer. If only there was an image to go with it. – pst Jan 25 at 5:23
(Note in particular that every non-leaf has balance "factor" different from 0.) – Erik P. Jan 25 at 18:13
feedback

Your Answer

 
or
required, but never shown

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