题解 | 二叉树的深度遍历

从上往下打印二叉树

http://www.nowcoder.com/practice/7fe2212963db4790b57431d9ed259701

import java.util.ArrayList;
/**
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) {
        Queue<TreeNode> queue=new LinkedList<TreeNode>();
        
        ArrayList<Integer> list=new ArrayList<Integer>();
        if(root==null){
            return list;
        }
        TreeNode cur = root;
        queue.offer(cur);
        while(!queue.isEmpty()){
            cur=queue.poll();
            list.add(cur.val);
            if(cur.left!=null){
                queue.offer(cur.left);
            }
            if(cur.right!=null){
                queue.offer(cur.right);
            }
        }
        return list;
    }
}
全部评论

相关推荐

点赞 收藏 评论
分享
牛客网
牛客企业服务