Coming Soon
Binary Search Tree (BST)
Classic BST insertions, deletions, and in-/pre-/post-order traversals animated step-by-step.
Coming Soon
AVL Tree
Height-balanced BST with automatic left/right rotations to keep height at O(log n).
Live
Red-Black Tree
Self-balancing BST using color rules and rotations. Watch recolorings restore the invariant on every insert.
Live
Trie (Prefix Tree)
Character-by-character prefix tree powering autocomplete. Insert words and search in O(m) time.