Data Structure Visualizer
Visualize Binary Search Trees with interactive insertion and search operations
Quick Start
Operations
Binary Search Tree
0 nodes

Tree is empty. Insert values to visualize.

Binary Search Tree Properties

• Left subtree contains values less than the node

• Right subtree contains values greater than the node

• Search/Insert time complexity: O(log n) average, O(n) worst case

• In-order traversal produces sorted sequence