Features
- All the keys in left sub-tree are smaller than the ye value in root
- All the keys in right sub-tree are larger than the ye value in root
- Average depth is
- Maximum depth is
Deletion
- Delete leaf node
- Delete node with 1 sub-tree
- Delete node with 2 sub-tree
- Replace node with smallest node of right sub-tree, OR
- Replace node with largest node of left sub-tree