Binary Tree Zigzag Traversal
Tree BFS
Problem
Given a binary tree, return the zigzag level order traversal of its nodes' values. (ie, from left to right, then right to left for the next level and alternate between).
Thought Process

We can use a bool variable to denote when we switch directions
Solution
PreviousBinary Tree Level Order Traversal II (Reverse Level Order Traversal)NextAverage of Levels in Binary Tree
Last updated
Was this helpful?