Binary Tree Traversals
(Inorder • Preorder • Postorder)

Enter level-order input → see recursive traversals with animation

Inorder (Left → Root → Right)

Preorder (Root → Left → Right)

Postorder (Left → Right → Root)