...

/

Binary Tree Zigzag Level Order Traversal

Binary Tree Zigzag Level Order Traversal

Description

Given a binary tree T, you have to find its nodes’ zigzag level order traversal. The zigzag level order traversal corresponds to traversing nodes from left to right and then right to left for the next level, alternating between.

You have to return the element in each level in a two-dimensional array.

Let’s look at an example:

Do it yourself

main.cpp
TreeNode.h
#include "TreeNode.h"
std::vector<std::vector<int>> zigzagLevelOrder(TreeNode* root) {
return {{}};
}
Binary Tree Zigzag Level Order Traversal

Solution

As per the problem statement, we need to traverse the tree in a level-by-level zigzag order. An intuitive approach for this problem would be to use Breadth-First Search (BFS). By default, BFS provides ordering from left to right within a single level.

We will need to modify BFS a little to get our desired output, a zigza ...

Create a free account to view this lesson.

By signing up, you agree to Educative's Terms of Service and Privacy Policy