

InterviewSolution
Saved Bookmarks
1. |
In preorder traversal of a binary tree the second step is ____________(a) traverse the right subtree(b) traverse the left subtree(c) traverse right subtree and visit the root(d) visit the rootThe question was posed to me in my homework.The query is from Tree Traversal topic in section Trees of Discrete Mathematics |
Answer» Correct option is (b) TRAVERSE the left subtree |
|