Skip to content

Commit bfeac91

Browse files
Add rotation steps description;
1 parent a277fed commit bfeac91

File tree

1 file changed

+22
-3
lines changed

1 file changed

+22
-3
lines changed

AVL Tree/README.markdown

+22-3
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,32 @@ The difference between the heights of the left and right subtrees is called the
4343
If after an insertion or deletion the balance factor becomes greater than 1, then we need to re-balance this part of the AVL tree. And that is done with rotations.
4444

4545
## Rotations
46-
4746
Each tree node keeps track of its current balance factor in a variable. After inserting a new node, we need to update the balance factor of its parent node. If that balance factor becomes greater than 1, we "rotate" part of that tree to restore the balance.
4847

49-
Example of balancing the unbalanced tree using rotation:
48+
Example of balancing the unbalanced tree using *Right* (clockwise direction) rotation :
5049
![Rotation](Images/Rotation.jpg)
5150

52-
Insertion never needs more than 2 rotations. Removal might require up to *log(n)* rotations.
51+
Let's dig into rotation algorithm in detail using the terminology:
52+
* *Root* - the parent not of the subtrees that will be rotated;
53+
* *Pivot* - the node that will become parent (basically will be on the *Root*'s position) after rotation;
54+
* *RotationSubtree* - subtree of the *Pivot* upon the side of rotation
55+
* *OppositeSubtree* - subtree of the *Pivot* opposite the side of rotation
56+
57+
The steps of rotation on the example image could be described by following:
58+
* Select the *Pivot* as `D` and hence the *Root* as `F`;
59+
* Assign the *RotationSubtree* as a new *OppositeSubtree* for the *Root*;
60+
* Assign the *Root* as a new *RotationSubtree* for the *Pivot*;
61+
* Check the final result
62+
63+
In pseudocode the algorithm above could be written as follows:
64+
```
65+
Root.OS = Pivot.RS
66+
Pivot.RS = Root
67+
Root = Pivot
68+
```
69+
70+
This is a constant time operation - __O(1)__
71+
Insertion never needs more than 2 rotations. Removal might require up to __log(n)__ rotations.
5372

5473
## The code
5574

0 commit comments

Comments
 (0)