You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.