previous | index | next

Inorder Traversal

  1. Visit all the nodes in the left subtree in inorder

  2. Visit the root

  3. Visit all the nodes in the right subtree in inorder

Desired behavior:

     (inorder bushy-tree) ⇒ (______?______)

previous | index | next