Tree Structure Visualizer

Visualize Binary Trees, BST, AVL, and Red-Black Trees

← Home

Tree Statistics

Nodes
0
Height
0
Balanced
Yes
Range
- to -

Binary Search Tree

A binary tree where left child < parent < right child for all nodes.

Search: O(log n) avg, O(n) worst
Insert: O(log n) avg, O(n) worst
Delete: O(log n) avg, O(n) worst