Binary Tree Zigzag Traversal
Tree BFS
PreviousBinary Tree Level Order Traversal II (Reverse Level Order Traversal)NextAverage of Levels in Binary Tree
Last updated
Was this helpful?
Tree BFS
Last updated
Was this helpful?
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).
For example:
Given binary tree [3,9,20,null,null,15,7]
,
return its zigzag level order traversal as:
We can use a bool variable to denote when we switch directions