二叉树的层次遍历(BFS)

Posted zzb666

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了二叉树的层次遍历(BFS)相关的知识,希望对你有一定的参考价值。

今日在LeetCode平台上刷到一道Medium难度的题,要求是二叉树的层次遍历。个人认为难度并不应该定在Medium, 应该是Easy比较合适,因为并没有复杂的算法逻辑,也没有corner cases

 

 

技术图片

 

class Solution {
    public List<List<Integer>> levelOrder(TreeNode root) {
        //using queue
        List<List<Integer>> res= new ArrayList<>();
        if(root == null) return res;
        Queue<TreeNode> q = new LinkedList<>();
        q.offer(root);
        while(!q.isEmpty()){
            int len = q.size();
            List<Integer> tmp = new ArrayList<>();
            while(len-->0){
                TreeNode t = q.poll();
                tmp.add(t.val);
                if(t.left!=null) q.offer(t.left);
                if(t.right!=null) q.offer(t.right);
            }
            res.add(tmp);
        }
        return res;
    }
}

以上是关于二叉树的层次遍历(BFS)的主要内容,如果未能解决你的问题,请参考以下文章

103. 二叉树的锯齿形层次遍历(BFS)

基础扫盲:二叉树系列 第二讲(层次遍历与BFS)

二叉树的层次遍历

LeetCode 429 N叉树的层次遍历[BFS] HERODING的LeetCode之路

LeetCode刷题(126)~二叉树的层序遍历BFS

二叉树的层次遍历