Binary Search Trees (BSTs)

What is a Binary Search Tree?

A Binary Search Tree (BST) is a data structure that maintains sorted order and allows for efficient searching, insertion, and deletion.

BSTs allow O(log n) search, insert, and delete operations in average cases.

Properties of a BST

Example Diagram

Binary Search Tree Example

More Information

Learn more about BSTs here.