103. Binary Tree Zigzag Level Order Traversal - Detailed Explanation

Free Coding Questions Catalog
Boost your coding skills with our essential coding questions catalog. Take a step towards a better tech career now!

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

  1. Think about using a level order traversal (BFS) with a queue to process the tree level by level.
  2. 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:
    1. Define a helper function that accepts a node and its level.

    2. If the current level does not have a list in your result structure, create one.

    3. 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.

    4. 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)

Python3
Python3

. . . .

Java Code (DFS Recursive)

Java
Java

. . . .

Approach 2: BFS (Iterative) with a Queue

Explanation

  • Idea: Use a breadth-first search (BFS) strategy to traverse the tree level by level.
  • Steps:
    1. Initialize a queue with the root node.
    2. Use a boolean flag (leftToRight) to track the direction of traversal for the current level.
    3. For each level, process all nodes currently in the queue. Collect their values in a temporary list.
    4. If the current level should be traversed from right to left, reverse the temporary list.
    5. Add the children of each node (if they exist) to the queue for processing the next level.
    6. 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)

Python3
Python3

. . . .

Java Code (BFS Iterative)

Java
Java

. . . .

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.

TAGS
leetcode
CONTRIBUTOR
Design Gurus Team
-

GET YOUR FREE

Coding Questions Catalog

Design Gurus Newsletter - Latest from our Blog
Boost your coding skills with our essential coding questions catalog.
Take a step towards a better tech career now!
Explore Answers
Which coding is best for beginners?
How many candidates get final round interview?
What are key differences between REST APIs and Microservices?
Related Courses
Image
Grokking the Coding Interview: Patterns for Coding Questions
Grokking the Coding Interview Patterns in Java, Python, JS, C++, C#, and Go. The most comprehensive course with 476 Lessons.
Image
Grokking Modern AI Fundamentals
Master the fundamentals of AI today to lead the tech revolution of tomorrow.
Image
Grokking Data Structures & Algorithms for Coding Interviews
Unlock Coding Interview Success: Dive Deep into Data Structures and Algorithms.
Image
One-Stop Portal For Tech Interviews.
Copyright © 2025 Design Gurus, LLC. All rights reserved.
;