Binary Search Tree
Left subtree contains smaller values.
Right subtree contains larger values.
Inorder traversal produces sorted order.
Search, insertion, and deletion are O(h), where h is tree height.
For a balanced BST, these operations are typically O(log n).
For a highly skewed BST, they can degrade to O(n).