Skip to content

Latest commit

 

History

History
5 lines (3 loc) · 237 Bytes

POSTORDER_TRAVERSAL.md

File metadata and controls

5 lines (3 loc) · 237 Bytes

Postorder Traversal

Write recursive method postorderTraversal to traverse the tree and print the node values.

The postorder traversal processes the value in each node after the values of all that node’s children are processed.