Binary Search Tree

What is a BST?

A Binary Search Tree (BST) is a data structure where each node has at most two children. Values smaller than the node go left, and values larger go right.

Key Features

Example Diagram

Learn More

More information about BST