-
Consider the following rooted tree with the vertex labeled P as the root :
The order in which the nodes are visited during an in-order traversal of the tree is
-
- SQPTRWUV
- SQPTUWRV
- SQPTWUVR
- SQPTRUWV
- SQPTRWUV
Correct Option: A
The in order transversal is as: left, root, middle, right \ Nodes are visited in SQPTRWUV order.