AVL Rotations in Javascript


To balance itself, an AVL tree may perform the following four kinds of rotations −

  • Left rotation
  • Right rotation
  • Left-Right rotation
  • Right-Left rotation

The first two rotations are single rotations and the next two rotations are double rotations. To have an unbalanced tree, we at least need a tree of height 2. With this simple tree, let's understand them one by one.

Left Rotation

If a tree becomes unbalanced, when a node is inserted into the right subtree of the right subtree, then we perform a single left rotation −

Left Rotation

In our example, node A has become unbalanced as a node is inserted in the right subtree of A's right subtree. We perform the left rotation by making A the left-subtree of B. This rotation is also called an LL rotation. Let us look at how we can implement it −

function rotationLL(node) {
let tmp = node.left;
node.left = tmp.right;
tmp.right = node;
return tmp;
}

Right Rotation

AVL tree may become unbalanced if a node is inserted in the left subtree of the left subtree. The tree then needs a right rotation.

Right Rotation

As depicted, the unbalanced node becomes the right child of its left child by performing a right rotation. This is also called an RR rotation. Let us see how it looks in code −

function rotationRR(node) {
let tmp = node.right;
node.right = tmp.left;
tmp.left = node;
return tmp;
}

Left-Right Rotation

Double rotations are a slightly complex version of already explained versions of rotations. To understand them better, we should take note of each action performed while rotation. Let's first check how to perform the Left-Right rotation. A left-right rotation is a combination of left rotation followed by a right rotation.

StateAction
AVL TreeA node has been inserted into the right subtree of the left subtree. This makes C an unbalanced node. These scenarios cause AVL tree to perform the left-right rotation.
Sub TreeWe first perform the left rotation on the left subtree of C. This makes A, the left subtree of B.
Left TreeNode C is still unbalanced, however now, it is because of the left-subtree of the left-subtree.
Own Left TreeWe shall now right-rotate the tree, making B the new root node of this subtree. C now becomes the right subtree of its own left subtree.
Tree BalancedThe tree is now balanced.

This is also called an LR rotation as we first perform a left rotation followed by a right rotation. This can be implemented using the previous 2 methods as follows −

function rotationLR(node) {
node.left = rotationRR(node.left);
return rotationLL(node);
}

Right-Left Rotation

The second type of double rotation is Right-Left Rotation. It is a combination of right rotation followed by a left rotation.

StateAction
Balanced TreeA node has been inserted into the left subtree of the right subtree. This makes A, an unbalanced node with balance factor 2.
Right Sub-TreeFirst, we perform the right rotation along C node, making C the right subtree of its own left subtree B. Now, B becomes the right subtree of A.
UnbalancedNode A is still unbalanced because of the right subtree of its right subtree and requires a left rotation.
SubtreeA left rotation is performed by making B the new root node of the subtree. A becomes the left subtree of its right subtree B.
Tree BalancedThe tree is now balanced.

This is also called an RL rotation as we first perform a right rotation followed by a left rotation. This can be implemented using the previous 2 methods as follows −

function rotationRL(node) {
node.right = rotationLL(node.right);
return rotationRR(node);
}

Sai Subramanyam
Sai Subramanyam

Passionate, Curious and Enthusiastic.

Updated on: 15-Jun-2020

215 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements