Skip to content

Latest commit

 

History

History
3 lines (2 loc) · 232 Bytes

File metadata and controls

3 lines (2 loc) · 232 Bytes

AVL tree

The AVL tree is a self-balancing binary tree. The operations take O(log n) time in average and worst cases, to ensure that, when inserting or deleting a node from the tree it uses tree rotations to restructure the tree.