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

按层打印二叉树

时间:2017-05-20 01:16:59      阅读:265      评论:0      收藏:0      [点我收藏+]

标签:code   roo   str   imp   null   add   style   integer   保存   

思路:用队列保存二叉树的层节点,不断地从中弹出节点。每一次都用新的temp变量保存当前层的第一个节点

        

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) {
        ArrayList<Integer> res = new ArrayList<Integer>();
        if(root == null){
            return res;
        }
        ArrayList<TreeNode> queue = new ArrayList<>();
        queue.add(root);
        while(!queue.isEmpty()){
            TreeNode temp = queue.remove(0);
            if(temp.left != null){
                queue.add(temp.left);
            }
            if(temp.right != null){
                queue.add(temp.right);
            }
            res.add(temp.val);
        }
        return res;
    }
}

 

按层打印二叉树

标签:code   roo   str   imp   null   add   style   integer   保存   

原文地址:http://www.cnblogs.com/marcoreus/p/6880630.html

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