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

从上往下打印二叉树

时间:2018-12-29 19:43:45      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:otto   empty   打印   nod   ISE   this   lin   top   pre   

题目描述:从上往下打印出二叉树的每个节点,同层节点从左至右打印。

实现语言: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 {
    public ArrayList<Integer> PrintFromTopToBottom(TreeNode root) {
        LinkedList<TreeNode> que=new LinkedList<TreeNode>();
        ArrayList<Integer> res=new ArrayList<Integer>();
        if(root==null){
            return res;
        }
        que.offer(root);
        while(!que.isEmpty()){
            root=que.poll();
            res.add(root.val);
            if(root.left!=null){
                que.offer(root.left);
            }
            if(root.right!=null){
                que.offer(root.right);
            }
        }
        return res;
    }
}

 

从上往下打印二叉树

标签:otto   empty   打印   nod   ISE   this   lin   top   pre   

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

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