Step 1: Understanding the Concept:
Binary tree traversals are categorized based on when the root node is visited relative to the subtrees.
- Inorder: Left subtree, Root node, Right subtree.
- Preorder: Root node, Left subtree, Right subtree.
- Postorder: Left subtree, Right subtree, Root node.
Step 2: Detailed Explanation:
Let's define the sets based on standard definitions:
Set T consists of:
I. Inorder Traversal
II. Preorder Traversal
III. Postorder Traversal
Set S consists of:
L. Left $\rightarrow$ Root $\rightarrow$ Right
M. Root $\rightarrow$ Left $\rightarrow$ Right
N. Left $\rightarrow$ Right $\rightarrow$ Root
Matching the pairs:
- I matches with L (Inorder).
- II matches with M (Preorder).
- III matches with N (Postorder).
This gives the sequence I-L, II-M, III-N.
Step 3: Final Answer:
Matching option (A) correctly aligns the traversal type with its visiting sequence.