previous | index | next

Postorder Traversal

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

  2. Visit all the nodes in the right subtree in postorder

  3. Visit the root

Q: What does a postorder traversal return?

A:


previous | index | next