avl tree

An AVL tree is a self-balancing binary search tree, where the heights of the left and right subtrees of any node differ by at most 1. This balance condition ensures that the tree remains efficient for search, insertion, and deletion operations.

Requires login.