4.2. AVL Trees
This section discusses a type of balanced binary search trees called AVL Trees.
Last updated
Was this helpful?
This section discusses a type of balanced binary search trees called AVL Trees.
Last updated
Was this helpful?
AVL (Adelson-Velsky and Landis) trees preserve the balance at all time by keeping track of the height of every node through a balance factor.
Let us create the class inheriting AbstractBinaryNode
:
L2
: keeps track of the height of this node.
L6
: a node with no children has the height of 1
.
We then override the setLeftChild()
and setRigthChild()
methods such that the height of this node gets adjusted accordingly with the new child by calling the resetHeights()
method:
L15
: adjusts the height of this node and its ancestors, recursively.
L20-22
: retrieve the height of this node.
L24-27
: resets the height of this node if different and makes the recursive call to its parent.
What are the heights of
3
,5
, and7
in the figure below when the height of4
changes from 3 to 4?
Finally, we define the getBalanceFactor()
method that returns the height difference between the left-subtree and the right-subtree of this node:
How can we tell if the node is unbalanced by using the balance factor?
L10,16
: resets the height of node
after rotation.
node.resetHeights()
does not reset heights of nodes in its subtree. Would this cause an issue?
We then override the balance()
method:
L6
: the left-subtree is longer.
L9-10
: the case of left zig-zag.
L12
: the case of left linear.
L14
: the right-subtree is longer.
L17
: the case of right zig-zag.
L20
: the case of right linear.
The followings demonstrate how the balance()
method works in AVL Trees:
What is the worst-case complexity of the
balance()
method inAVLTree
?
Let us create the class that inherits AbstractBalancedBinarySearchTree
and override the createNote()
, rotateLeft()
, and rotateRight()
methods: