Question: Which traversal method would you use to delete a binary tree?
Options:
Correct Answer: Post-order
Solution:
Post-order traversal is used to delete a binary tree because it ensures that child nodes are deleted before their parent nodes, preventing memory leaks.