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

力扣练习004---二叉树的层次遍历(102)

时间:2020-03-14 11:03:16      阅读:49      评论:0      收藏:0      [点我收藏+]

标签:str   简单   mamicode   使用   binary   let   --   tco   lin   

题目描述:

https://leetcode-cn.com/problems/binary-tree-level-order-traversal/

给定一个二叉树,返回其按层次遍历的节点值。 (即逐层地,从左到右访问所有节点)。

例如:
给定二叉树: [3,9,20,null,null,15,7],

3
/ \
9 20
/ \
15 7
返回其层次遍历结果:

[
[3],
[9,20],
[15,7]
]

题目分析:

分层遍历,和广度优先搜索的思想不谋而和,比较简单,数据结构使用队列,算法为BFS

Java代码:

    public List<List<Integer>> levelOrder(TreeNode root) {
        List<List<Integer>> result = new ArrayList<>();
        if (root == null) {
            return result;
        }

        Queue<TreeNode> queue = new LinkedList<>();
        queue.offer(root);
        result.add(Collections.singletonList(root.val));
        while (!queue.isEmpty()) {
            int queueSize = queue.size();
            List<Integer> list = new ArrayList<>();
            for (int i = 0; i < queueSize; i++) {
                TreeNode node = queue.poll();
                if (node == null) {
                    continue;
                }

                if (node.left != null) {
                    list.add(node.left.val);
                    queue.offer(node.left);
                }
                if (node.right != null) {
                    list.add(node.right.val);
                    queue.offer(node.right);
                }
            }

            if (!list.isEmpty()) {
                result.add(list);
            }
        }

        return result;
    }

 

力扣运行结果:

技术图片

 

力扣练习004---二叉树的层次遍历(102)

标签:str   简单   mamicode   使用   binary   let   --   tco   lin   

原文地址:https://www.cnblogs.com/sniffs/p/12490784.html

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