Limited Time Offer:Up to 20% off Hello Interview Premium
Up to 20% off Hello Interview Premium 🎉
Hello Interview
Learn Code
Introduction
Overview
Container With Most Water
Two Sum (Sorted Array)
3-Sum
Triangle Numbers
Move Zeroes
Sort Colors
Trapping Rain Water
Overview
Maximum Sum of Subarrays of Size K
Max Points You Can Obtain From Cards
Max Sum of Distinct Subarrays Length k
Overview
Longest Substring Without Repeating Characters
Longest Repeating Character Replacement
Overview
Can Attend Meetings
Insert Interval
Non-Overlapping Intervals
Merge Intervals
Employee Free Time
Overview
Valid Parentheses
Decode String
Longest Valid Parentheses
Monotonic Stack
Daily Temperatures
Largest Rectangle in Histogram
Overview
Linked List Cycle
Palindrome Linked List
Remove Nth Node From End of List
Reorder List
Swap Nodes in Pairs
Overview
Apple Harvest (Koko Eating Bananas)
Search in Rotated Sorted Array
Split Array Largest Sum
Kth Smallest Element in a Sorted Matrix
Minimum Shipping Capacity
Overview
Kth Largest Element in an Array
K Closest Points to Origin
Find K Closest Elements
Merge K Sorted Lists
Median from Data Stream
Introduction
Fundamentals
Return Values
Maximum Depth of Binary Tree
Path Sum
Passing Values Down and Helper Functions
Validate Binary Search Tree
Calculate Tilt
Diameter of a Binary Tree
Path Sum II
Longest Univalue Path
Graphs Overview
Adjacency List
Copy Graph
Graph Valid Tree
Matrices
Flood Fill
Number of Islands
Surrounded Regions
Pacific Atlantic Water Flow
Introduction
Overview
Level Order Sum
Rightmost Node
Zigzag Level Order
Maximum Width of Binary Tree
Graphs Overview
Minimum Knight Moves
Rotting Oranges
01-Matrix
Bus Routes
Overview
Word Search
Solution Space Trees
Subsets
Generate Parentheses
Combination Sum
Palindrome Partitioning
N-Queens
Overview
Course Schedule
Course Schedule II
Shortest Path Algorithms
Network Delay Time
Cheapest Flights Within K Stops
Path With Minimum Effort
Find City with Fewest Reachable
Fundamentals
Solving a Question with Dynamic Programming
Counting Bits
Decode Ways
Unique Paths
Maximal Square
Longest Increasing Subsequence
Word Break
Maximum Profit in Job Scheduling
Paint House
Paint House II
Minimum Window Subsequence
Overview
Best Time to Buy and Sell Stock
Gas Station
Jump Game
Jump Game II
Partition Labels
Overview
Implement Trie Methods
Prefix Matching
Overview
Count Vowels in Substrings
Subarray Sum Equals K
Spiral Matrix
Rotate Image
Set Matrix Zeroes
Vote For New Content
Pricing
Sign in / Sign up
Search
⌘K
Pricing

Tutor

Breadth-First Search

Zigzag Level Order

medium

max (21)341224132;341225102;21365487109
Count: 10
abcValid triangle requires:a + b > c AND a + c > b AND b + c > a(every pair must sum to more than the third side)3511SOURCE23211SOURCE23UNREACHABLE$100$100$100$5000SRC123DST$100$100$1000SRC123DST01233141Threshold: 4Answer: 32 reachable01234231118Threshold: 2Answer: 01 reachable1102233321432263321
DESCRIPTION (inspired by Leetcode.com)

Given the root of a binary tree, return the zigzag level-order traversal of its nodes' values.

The output should be a list of lists containing the values of the nodes at each level. The first list should contain the value of the root, the second list should contain the values of the nodes at the second level from right to left, the third list should contain the values of the third level from left to right, and so on.

Example 1:

Input:

[1, 3, 4, null, 2, 7, null, 8]
132847[1][4, 3][2, 7][8]

Output: [[1], [4, 3], [2, 7], [8]]

Example 2:

Input:

[4, 2, 7, 1, 3, 6, 9, null, 5, null, 2]
[4][7, 2][2, 5][1,3,6,9]421532769

Output: [[4], [7, 2], [1, 3, 6, 9], [2, 5]]

Explanation

We should recognize that a level-order breadth-first traversal of the binary tree is the most straightforward way to solve this problem.
We'll use BFS to visit each node in the tree level by level, starting from the root node. For each level, we'll use a deque nodes_for_level to keep track of the nodes at that level. We'll also have a boolean left_to_right (initially True) that indicates the direction in which we should process the nodes at each level.
Whenever we reach a new level in the tree, we'll add the nodes in nodes_for_level to the output list, and toggle the value of left_to_right to prepare for the next level.
The diagram below shows the values of left_to_right and nodes_for_level for each level in the tree:
[4][7, 2][2, 5][1,3,6,9]421532769left_to_right = Trueleft_to_right = Falseleft_to_right = Trueleft_to_right = False
It's important to remember that the order in which we visit the nodes at each level using BFS is still from left to right. So the boolean left_to_right affects the order in which we add nodes to nodes_for_level, which we breakdown below:

Left to Right Processing

When left_to_right is true, we can simply add the nodes to the nodes_for_level list in the order they come off the BFS queue by adding them to the back of nodes_for_level.

Right to Left Processing

When left_to_right is false, the first node that we process at each level should be the last node in the nodes_for_level queue. We can ensure this is true by adding each new node to the front of the nodes_for_level list using the appendleft method of the deque data structure.
Note how using the deque data structure in Python allows us to efficiently add nodes to the front of the list. This is because deque provides O(1) time complexity for adding elements to both the front and back of the list.
Solution
Python
Language
from collections import deque
class Solution:
def zig_zag(self, root):
if not root:
return []
nodes = []
queue = deque([root])
left_to_right = True
while queue:
level_size = len(queue)
nodes_for_level = deque()
# process all nodes at this level
for i in range(level_size):
node = queue.popleft()
if left_to_right:
# add the node to the back of the list
nodes_for_level.append(node.val)
else:
# add the node to the front of the list
nodes_for_level.appendleft(node.val)
if node.left:
queue.append(node.left)
if node.right:
queue.append(node.right)
# we've processed all nodes at the current level
# add them to the output list and toggle left_to_right
# to prepare for the next level
nodes.append(list(nodes_for_level))
left_to_right = not left_to_right
return nodes
Test Your Knowledge

Login to take the complexity quiz and track your progress

Complexity Analysis

Time Complexity: O(N) where N is the number of nodes in the tree. We visit each node exactly once, and at each node, we perform a constant amount of work.

Space Complexity: O(N) where N is the number of nodes in the tree. The output nodes list contains each element in the tree exactly once.

Mark as read

Next: Maximum Width of Binary Tree

Your account is free and you can post anonymously if you choose.

Unlock Premium Coding Content

Interactive algorithm visualizations
Guided Practice
Recent interview questions
Learn More
Reading Progress

On This Page

Explanation

Questions
Meta SWE Interview QuestionsAmazon SWE Interview QuestionsGoogle SWE Interview QuestionsOpenAI SWE Interview QuestionsAnthropic SWE Interview QuestionsEngineering Manager (EM) Interview Questions
Learn
Learn System DesignLearn DSALearn BehavioralLearn ML System DesignLearn Low Level DesignGuided Practice
Links
FAQPricingGift PremiumHello Interview Premium
Legal
Terms and ConditionsPrivacy PolicySecurity
Contact
About UsProduct Support

7511 Greenwood Ave North Unit #4238 Seattle WA 98103


© 2026 Optick Labs Inc. All rights reserved.

Login to track your progress