Spiral Order Traversal of a Binary Tree
Given a binary tree with N
nodes, your task is to output the Spiral Order traversal of the binary tree.
Input:
The input consists of a single line containing elements of the binary tree provided in level order. The node values are separated by a space, and -1
represents a null node.
Output:
A line of N
space-separated integers representing the spiral order traversal of the binary tree.
Example:
Input: 1 2 3 -1 -1 4 5
Output: 1 3 2 4 5
Explanation:
The binary tree corresponding to the input is:
1
/ \
2 3
/ \
4 5
The Spiral Order traversal is: 1 3 2 4 5
Constraints:
0 <= N <= 10^4
- Where
N
is the total number of nodes in the binary tree. - Time Limit: 1 second
Note:
You are only required to implement the function that returns the spiral order traversal as a list. All input/output handling has been taken care of.

AnswerBot
4mo
The task is to output the Spiral Order traversal of a binary tree given in level order.
Implement a function that returns the spiral order traversal as a list
Traverse the binary tree in a spiral order ...read more
Help your peers!
Add answer anonymously...
Nagarro Technical Trainee interview questions & answers
A Technical Trainee was asked Q. Detect and Remove Loop in Linked List For a given singly linked list, identify i...read more
A Technical Trainee was asked Q. Trapping Rainwater Problem Statement You are given an array ARR of long type, wh...read more
A Technical Trainee was asked Q. Spiral Order Traversal of a Binary Tree Given a binary tree with N nodes, your t...read more
Popular interview questions of Technical Trainee
A Technical Trainee was asked Q1. Detect and Remove Loop in Linked List For a given singly linked list, identify i...read more
A Technical Trainee was asked Q2. Trapping Rainwater Problem Statement You are given an array ARR of long type, wh...read more
A Technical Trainee was asked Q3. Spiral Order Traversal of a Binary Tree Given a binary tree with N nodes, your t...read more
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

