Skip to content

Latest commit

 

History

History
6 lines (3 loc) · 418 Bytes

README.md

File metadata and controls

6 lines (3 loc) · 418 Bytes

AVL TREE

Build Status

AVL tree is a self-balancing binary search tree. It was the first such data structure to be invented. In an AVL tree, the heights of the two child subtrees of any node differ by at most one; if at any time they differ by more than one, rebalancing is done to restore this property.