码迷,mamicode.com
首页 > 其他好文 > 详细

按之字形顺序打印二叉树

时间:2019-03-12 12:39:48      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:new   函数   ack   nbsp   bsp   util   import   solution   roo   

题目描述

请实现一个函数按照之字形打印二叉树,即第一行按照从左到右的顺序打印,第二层按照从右至左的顺序打印,第三行按照从左到右的顺序打印,其他行以此类推。
 
import java.util.ArrayList;
import java.util.Stack;
/*
public class TreeNode {
    int val = 0;
    TreeNode left = null;
    TreeNode right = null;

    public TreeNode(int val) {
        this.val = val;

    }

}
*/
public class Solution {
    public ArrayList<ArrayList<Integer> > Print(TreeNode pRoot) {
        Stack<TreeNode> stack1 = new Stack<>();
        stack1.push(pRoot);
        int layer = 1;
        Stack<TreeNode> stack2 = new Stack<>();
        ArrayList<ArrayList<Integer>> list = new ArrayList<>();
        while(!stack1.empty() || !stack2.empty()) {
            if(layer%2 != 0) {
                ArrayList<Integer> temp = new ArrayList<>();
                while(!stack1.empty()) {
                    TreeNode node = stack1.pop();
                    if(node != null) {
                        temp.add(node.val);
                        stack2.push(node.left);
                        stack2.push(node.right);
                    }
                }
                if(!temp.isEmpty()) {
                    list.add(temp);
                    layer++;
                }
            }else {
                ArrayList<Integer> temp = new ArrayList<>();
                while(!stack2.empty()) {
                    TreeNode node = stack2.pop();
                    if(node != null) {
                        temp.add(node.val);
                        stack1.push(node.right);
                        stack1.push(node.left);
                    }
                }
                if(!temp.isEmpty()) {
                    list.add(temp);
                    layer++;
                }
            }
        }
        return list;
    }

}

 

按之字形顺序打印二叉树

标签:new   函数   ack   nbsp   bsp   util   import   solution   roo   

原文地址:https://www.cnblogs.com/yihangZhou/p/10515629.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!