Question: Which traversal method is best suited for copying a binary tree?
Options:
Correct Answer: Pre-order
Solution:
Pre-order traversal is best suited for copying a binary tree because it processes the root node before its children, allowing for a straightforward reconstruction.