Binary Search Trees

What is a BST?

A binary search tree is a data structure where each node has at most two children, and left child < parent < right child.

Key Properties

Simple BST diagram

Learn More

Check out GeeksforGeeks BST tutorial for more information.