Binary Search Tree

About BST

A Binary Search Tree is a node-based data structure where each node has at most two children. The left subtree contains values less than the node, and the right subtree contains values greater than the node.

Search (avg): O(log n)
Insert (avg): O(log n)
Delete (avg): O(log n)
Space: O(n)
Ready