推荐

完整《剑指Offer》算法题解析系列请点击 👉 《剑指Offer》全解析 Java 版

题目描述

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

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 {
   
    ArrayList<ArrayList<Integer> > Print(TreeNode pRoot) {
   
    
    }
    
}

参考思路: 队列。

和上一题差不多,就是不用考虑翻转。

参考实现:

import java.util.ArrayList;
import java.util.*;

/* 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 pRoot) {
   
        ArrayList<ArrayList<Integer>> result = new ArrayList<>();
        
        LinkedList<TreeNode> queue = new LinkedList<>();
        
        queue.add(pRoot);
        
        while (!queue.isEmpty()) {
   
            int count = queue.size();
            ArrayList<Integer> list = new ArrayList<>();
            
            while(count-- > 0) {
   
                TreeNode node = queue.poll();
                if(node == null) {
   
                    continue;
                }
                list.add(node.val);
                queue.add(node.left);
                queue.add(node.right);
            }
            
            if(list.size() != 0) {
   
                result.add(list);
            }
        }
        return result;
    }
    
}

看完之后,如果还有什么不懂的,可以在评论区留言,会及时回答更新。

这里是猿兄,为你分享程序员的世界。

非常感谢各位大佬们能看到这里,如果觉得文章还不错的话, 求点赞👍 求关注💗 求分享👬求评论📝 这些对猿兄来说真的 非常有用!!!

注: 如果猿兄这篇博客有任何错误和建议,欢迎大家留言,不胜感激!