Binary Search Tree

What is a BST?

A Binary Search Tree (BST) is a node-based binary tree data structure where each node has a comparable key (and associated value) and satisfies the property:

Diagram

Binary Search Tree diagram

Learn More

Visit Wikipedia - Binary Search Tree for more details.