Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 305 Bytes

File metadata and controls

8 lines (6 loc) · 305 Bytes

Postorder Traversal

alt text

Algorithm Postorder(tree)

  • Traverse the left subtree, i.e., call Postorder(left-subtree)
  • Traverse the right subtree, i.e., call Postorder(right-subtree)
  • Visit the root.