An AVL tree is the same as a self-balancing binary search tree. What does AVL stand for? Does it have to do with the name of the inventor?
Asked
Active
Viewed 4,060 times
7
-
I downvoted this question because it shows absolutely no initiative on the OP's part to answer his own question. Typing the question into any search engine reveals the answer in a matter of seconds. – Jim Mischel Jun 20 '16 at 13:27
2 Answers
1
An AVL tree is another balanced binary search tree. Named after their inventors, Adelson-Velskii and Landis, they were the first dynamically balanced trees to be proposed. Like red-black trees, they are not perfectly balanced, but pairs of sub-trees differ in height by at most 1, maintaining an O(logn) search time. Addition and deletion operations also take O(logn) time.
Reference https://www.cs.auckland.ac.nz/software/AlgAnim/AVL.html

madhan kumar
- 1,560
- 2
- 26
- 36