103. Binary Tree Zigzag Level Order Traversal - Detailed Explanation
Problem Statement
Given the root of a binary tree, return the zigzag level order traversal of its nodes' values. This means that for the first level you traverse from left to right, for the second level from right to left, and you continue alternating for subsequent levels.
Example 1
- Input: root = [3, 9, 20, null, null, 15, 7]
- Output: [[3], [20, 9], [15, 7]]
- Explanation:
- Level 1: Only node 3 → [3]
- Level 2: Nodes 9 and 20; since it is the second level, traverse right-to-left → [20, 9]
- Level 3: Nodes 15 and 7; traverse left-to-right again → [15, 7]
Example 2
- Input: root = [1]
- Output: [[1]]
- Explanation:
- Only one level with the single node 1.
Example 3
- Input: root = []
- Output: []
- Explanation:
- The tree is empty, so the output is an empty list.
Constraints:
- The number of nodes in the tree is in the range [0, 2000].
- -100 ≤ Node.val ≤ 100
Hints
- Think about using a level order traversal (BFS) with a queue to process the tree level by level.
- To achieve the zigzag pattern, consider reversing the list of node values on every alternate level or using a data structure that allows adding elements at the beginning when needed.
Approaches
Approach 1: DFS (Recursive) with Level Tracking
Explanation
- Idea: Use depth-first search (DFS) to traverse the tree recursively while keeping track of the current level.
- Steps:
-
Define a helper function that accepts a node and its level.
-
If the current level does not have a list in your result structure, create one.
-
Depending on whether the current level is even or odd, either append the node’s value at the end or insert it at the beginning of the corresponding list.
-
Recursively traverse the left and right children while incrementing the level.
-
- Visual Example:
For the tree [3, 9, 20, null, null, 15, 7]:- Start at level 0 with node 3.
- Go to level 1: process node 9 and node 20. For level 1 (odd), insert values at the beginning so that the order becomes [20, 9].
- Continue recursively for the next level.
Complexity Analysis
-
Time Complexity: O(n), where n is the number of nodes (each node is visited once).
-
Space Complexity: O(n) due to the recursion stack (in the worst case of a skewed tree) and storage for the output.
Python Code (DFS Recursive)
Java Code (DFS Recursive)
Approach 2: BFS (Iterative) with a Queue
Explanation
- Idea: Use a breadth-first search (BFS) strategy to traverse the tree level by level.
- Steps:
- Initialize a queue with the root node.
- Use a boolean flag (
leftToRight
) to track the direction of traversal for the current level. - For each level, process all nodes currently in the queue. Collect their values in a temporary list.
- If the current level should be traversed from right to left, reverse the temporary list.
- Add the children of each node (if they exist) to the queue for processing the next level.
- Toggle the
leftToRight
flag after processing each level.
- Visual Example:
For the tree [3, 9, 20, null, null, 15, 7]:- Level 1: Process node 3 and store [3].
- Level 2: Process nodes 9 and 20; reverse their order to get [20, 9].
- Level 3: Process nodes 15 and 7 and keep order as [15, 7].
Complexity Analysis
- Time Complexity: O(n) because each node is processed exactly once.
- Space Complexity: O(n) due to the queue which in the worst-case scenario (a full level) holds many nodes.
Python Code (BFS Iterative)
Java Code (BFS Iterative)
Common Mistakes and Edge Cases
-
Common Mistakes:
-
Forgetting to toggle the direction flag after each level.
-
Not handling the empty tree case (i.e., when the root is null).
-
Incorrectly reversing the order only after processing all nodes in a level rather than while collecting nodes.
-
-
Edge Cases:
-
Empty Tree: When the tree is empty (root is null), the output should be an empty list.
-
Single Node: The tree with a single node should return a list containing one list with that node.
-
Skewed Trees: Trees that have only left or only right children require careful management of levels.
-
Related Problems
GET YOUR FREE
Coding Questions Catalog
