1/27/2003
CS2 Week 7
16
Postorder
void
PostorderTraversal(TreeNode Ptr)
{
traverse left sub-tree
traverse right sub-tree
visit the node
}