zoukankan      html  css  js  c++  java
  • [GeeksForGeeks] Level order traversal in spiral form of a binary tree.

    Write a function to print spiral order traversal of a binary tree. For below tree, function should print 1, 2, 3, 4, 5, 6, 7.


      


    Solution.

    For a normal level order traversal of a binary tree, we traverse every level from left to right. To achieve this, a queue 

    is used to store the next level's nodes. 

    To do this traversal in a spiral order, we need to be able to add and poll nodes in a queue from its front and back.

    This implies using Deque and a boolean flag to indicate if we are traversing from left to right or from right to left.

    When traversing from right to left, we poll nodes from the end of dq; First add its right child node, then its left child node to the front of dq.

    When traversing from left to right, we poll nodes from the front of dq; First add its left, then right child node to the back of dq.

    After adding all nodes in one level, reverse the traversal direction flag.

     1 import java.util.ArrayList;
     2 import java.util.LinkedList;
     3 import java.util.Deque;
     4 
     5 class LOTSpiralNode {
     6     int val;
     7     LOTSpiralNode left, right;
     8     LOTSpiralNode(int v) {
     9         this.val = v;
    10         this.left = null;
    11         this.right = null;
    12     }
    13     LOTSpiralNode(LOTSpiralNode t){
    14         this.val = t.val;
    15         this.left = t.left;
    16         this.right = t.right;
    17     }
    18 }
    19 public class LOTSpiral {
    20     public ArrayList<Integer> levelOrderTraversalSpiral(LOTSpiralNode root) {
    21         ArrayList<Integer> list = new ArrayList<Integer>();
    22         if(root == null) {
    23             return list;
    24         }
    25         Deque<LOTSpiralNode> dq = new LinkedList<LOTSpiralNode>();
    26         boolean leftToRight = false;
    27         dq.add(root);
    28         while(!dq.isEmpty()) {
    29             int size = dq.size();
    30             for(int i = 0; i < size; i++) {
    31                 LOTSpiralNode curr;
    32                 if(leftToRight) {
    33                     curr = dq.pollFirst();
    34                     if(curr.left != null) {
    35                         dq.addLast(curr.left);
    36                     }
    37                     if(curr.right != null) {
    38                         dq.addLast(curr.right);
    39                     }
    40                 }
    41                 else{
    42                     curr = dq.pollLast();
    43                     if(curr.right != null) {
    44                         dq.addFirst(curr.right);
    45                     }
    46                     if(curr.left != null) {
    47                         dq.addFirst(curr.left);
    48                     }
    49                 }
    50                 list.add(curr.val);
    51             }
    52             leftToRight = !leftToRight;
    53         }
    54         return list;
    55     }
    56 }
  • 相关阅读:
    How To Change Database Name
    Oracle备份与恢复案例
    Linux 下安装 Oracle9i
    在 Linux x86 上安装 Oracle 数据库 10g_1
    在 Linux x86 上安装 Oracle 数据库 10g_2
    Oracle9i数据库DataGuard实施及维护手册2
    在 Linux x86 上安装 Oracle 数据库 10g_3
    流程企业(钢铁企业)的制造执行系统
    理解和使用Oracle分析工具LogMiner
    Oracle9i数据库Data Guard实施及维护手册 1
  • 原文地址:https://www.cnblogs.com/lz87/p/7349794.html
Copyright © 2011-2022 走看看