Is there a datastructure to support O(log(N)) search, insert
and delete operations?
Problem with Linked List: in search only one path to take.....
what if we had more than one path (link)
Solution: Tree???
Best Case: Fast
Worst Case: Like a Linked List
Better Solution: Constrained Trees (e.g. Binary Tree)