Data-Structures-Algorithms-Problems/AVLTree/JavaScript at main · ismaelsadeeq/Data-Structures-Algorithms-Problems

Skip to content

Navigation Menu

Sign in

Appearance settings

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Appearance settings

Latest commit

History

History

Folders and files

NameName

Last commit message

Last commit date

parent directory

..

ReadMe.md

AVL Tree in JavaScript

An AVL tree is a self-balancing Binary Search Tree (BST) where the heights of the two child subtrees of any node cannot differ by more than one. If at any time they differ by more than one, rebalancing is done through LL, RR, LR or RL rotations to restore this property.

Further Explanation on AVL Tree