Tree: Depth-First Search - Symmetric Tree (DFS Approach)
Consider two approaches to check if a binary tree is symmetric: (1) recursive DFS with early exit, and (2) iterative BFS using a queue. When is the iterative BFS approach preferable over recursive DFS?
