Print Level order traversal in spiral form

Instructor: admin Duration: 37 mins

**************************************************************************************************************

Problem Statement:

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],

    3

   / \

  9  20

    /  \

   15   7

return its zigzag level order traversal as:

[

  [3],

  [20,9],

  [15,7]

]

Problem Practice LInk: https://leetcode.com/problems/binary-tree-zigzag-level-order-traversal/ 

C Program: https://ideone.com/I0MooX

Python Program Recursive: https://onlinegdb.com/rkv9aXUar

Iterative solution: https://ideone.com/l6Voup

Python Solution: https://onlinegdb.com/B1EuvVUaB


Similar Questions:

BInary Tree Level Order traversal: https://leetcode.com/problems/binary-tree-level-order-traversal/

**************************************************************************************************************

25 Comment(s)

1.4
18 min
1.5
13 min
1.30
19 min
3.17
16 min
11.4
38 min