I would like to know some complexities of binary search tree.
I can't find complete information. I want to know complexities for the following operations on a binary search tree
- to add/insert an element
- to remove an element
- to find an element (as I know this one is
O(log(n))
)