Skip to content

Commit bd645f3

Browse files
Update README.markdown
1 parent 9ecd211 commit bd645f3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

AVL Tree/README.markdown

+3-3
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,6 @@ If after an insertion or deletion the balance factor becomes greater than 1, the
4545
## Rotations
4646
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.
4747

48-
Example of balancing the unbalanced tree using *Right* (clockwise direction) rotation:
49-
5048
![Rotation0](Images/RotationStep0.jpg)
5149

5250
For the rotation we're using the terminology:
@@ -55,9 +53,11 @@ For the rotation we're using the terminology:
5553
* *RotationSubtree* - subtree of the *Pivot* upon the side of rotation
5654
* *OppositeSubtree* - subtree of the *Pivot* opposite the side of rotation
5755

56+
Let take an example of balancing the unbalanced tree using *Right* (clockwise direction) rotation:
57+
5858
![Rotation1](Images/RotationStep1.jpg) ![Rotation2](Images/RotationStep2.jpg) ![Rotation3](Images/RotationStep3.jpg)
5959

60-
The steps of rotation on the example image could be described by following:
60+
The steps of rotation could be described by following:
6161

6262
1. Assign the *RotationSubtree* as a new *OppositeSubtree* for the *Root*;
6363
2. Assign the *Root* as a new *RotationSubtree* for the *Pivot*;

0 commit comments

Comments
 (0)