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

把二叉树打印成多行

时间:2018-12-31 12:20:32      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:roo   public   nod   ISE   多行   描述   node   输出   null   

题目描述:从上到下按层打印二叉树,同一层结点从左至右输出。每一层输出一行。

实现语言:Java

import java.util.ArrayList;
import java.util.LinkedList;
/*
public class TreeNode {
    int val = 0;
    TreeNode left = null;
    TreeNode right = null;

    public TreeNode(int val) {
        this.val = val;
    }
}
*/
public class Solution {
    ArrayList<ArrayList<Integer> > Print(TreeNode root) {
        ArrayList<ArrayList<Integer>> res=new ArrayList<ArrayList<Integer>>();
        if(root==null){
            return res;
        }
        LinkedList<TreeNode> que=new LinkedList<TreeNode>();
        que.offer(root);
        int curNode=1;
        ArrayList<Integer> list=new ArrayList<Integer>();
        while(!que.isEmpty()){
            root=que.poll();
            --curNode;
            if(root.left!=null){
                que.offer(root.left);
            }
            if(root.right!=null){
                que.offer(root.right);
            }
            list.add(root.val);
            if(curNode==0){
                curNode=que.size();
                res.add(list);
                list=new ArrayList<Integer>();
            }
        }
        return res;
    }
}

 

把二叉树打印成多行

标签:roo   public   nod   ISE   多行   描述   node   输出   null   

原文地址:https://www.cnblogs.com/xidian2014/p/10201717.html

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