What is a BST?

A Binary Search Tree (BST) is a binary tree where each node’s left subtree has keys smaller than the node, and the right subtree has keys larger than the node. This structure helps us keep data ordered so we can find it quickly.

Diagram of a Binary Search Tree

Key Operations

Common BST operations include:

Learn More

For more details about Binary Search Trees, visit this BST article .