InterviewSolution
Saved Bookmarks
| 1. |
The steps for finding post-order traversal are traverse the right subtree, traverse the left subtree or visit the current node.(a) True(b) FalseMy question is based upon Binary Trees topic in section Binary Trees of Data Structures & Algorithms IThe question was asked by my school principal while I was bunking the class. |
|
Answer» RIGHT CHOICE is (b) False Explanation: Left subtree is TRAVERSED first in post-order traversal, then the right subtree is traversed and then the output CURRENT node. |
|