Texonom
Texonom
/
Computing
Computing
/Data/Data Structure/Tree Data/Binary Tree/Search Tree/Binary search tree/Balanced tree/
AVL tree
Search

AVL tree

Creator
Creator
Seonglae Cho
Created
Created
2023 Sep 27 7:33
Editor
Editor
Seonglae Cho
Edited
Edited
2023 Oct 25 16:25
Refs
Refs
 
 
 
 
 
AVL tree
In computer science, an AVL tree is a self-balancing binary search tree. In an AVL tree, the heights of the two child subtrees of any node differ by at most one; if at any time they differ by more than one, rebalancing is done to restore this property. Lookup, insertion, and deletion all take O(log n) time in both the average and worst cases, where is the number of nodes in the tree prior to the operation. Insertions and deletions may require the tree to be rebalanced by one or more tree rotations.
AVL tree
https://en.wikipedia.org/wiki/AVL_tree
AVL tree
 
 
 

Recommendations

Texonom
Texonom
/
Computing
Computing
/Data/Data Structure/Tree Data/Binary Tree/Search Tree/Binary search tree/Balanced tree/
AVL tree
Copyright Seonglae Cho