Define post order traversal
Answers
Answered by
0
Answer:
Postorder Traversal. Alternatively, we might wish to visit each node only after we visit its children (and their subtrees). For example, this would be necessary if we wish to return all nodes in the tree to free store. We would like to delete the children of a node before deleting the node itself.
Similar questions