Data Structures and Algorithms: A.Baskar
Data Structures and Algorithms: A.Baskar
A.Baskar
BITS Pilani, K. K. Birla Goa Campus
16 February 2018
Dictionary ADT
Binary Search Tree
AVL Tree
search, insert, delete will take O(h) time where h is height of the
tree
But in the worst case h can be O(n)
search, insert, delete will take O(h) time where h is height of the
tree
But in the worst case h can be O(n)
The is because the tree might be unbalanced
We have seen one solution: AVL trees