Binary Search Tree (BST)

What is a BST?

A Binary Search Tree is a data structure where each node has at most two children, and values are organized so that left < root < right.

Key Features

Example Diagram

Binary Search Tree Diagram

Learn more here: Binary Search Tree Wikipedia