Question: What is the result of a post-order traversal on the following binary tree: A, B, C, D?
Options:
Correct Answer: D C B A
Solution:
In post-order traversal, you visit the left subtree, then the right subtree, and finally the root. Thus, for the given tree, the result is D C B A.