AVL Trees

Self-balancing Binary Search Tree

Each node has a balance factor, so that the height of the tree only differs by one height.

O(log(N)) height, lookup, insertion, and deletion.

AVL Tree Operation

Click here to learn more.