Please enable JavaScript.
Coggle requires JavaScript to display documents.
Balanced Search Trees - Coggle Diagram
Balanced Search Trees
-
Efficiency
-
Worst Case:
BigTheta(log n)
Insertion and Search
Searching in an AVL tree requires, on average, almost the same number of comparisons as searching in a sorted array by binary search.
Delete
More difficult, but same efficiency as insertion and search
-
Self-Balancing Tree
-
rotations
Restore the balance required after a Insertion or Deletion of a node that creates a tree with a violated balance requirement
-
-
-
-