Leetcode刷题Python剑指 Offer 32 - I. 从上到下打印二叉树

Posted Better Bench

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode刷题Python剑指 Offer 32 - I. 从上到下打印二叉树相关的知识,希望对你有一定的参考价值。

1 题目

从上到下打印出二叉树的每个节点,同一层的节点按照从左到右的顺序打印。

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

    3
   / \\
  9  20
    /  \\
   15   7

返回:

[3,9,20,15,7]

来源:力扣(LeetCode)
链接:https://leetcode.cn/problems/cong-shang-dao-xia-da-yin-er-cha-shu-lcof
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

2 解析

层次遍历,使用队列,每次遍历一个节点后,将左右子节点加入到队列中

3 python实现

class Solution:
    def levelOrder(self, root: TreeNode) -> List[int]:
        from collections import deque
        if not root:return []
        res,queue = [],deque()
        queue.append(root)
        while queue:
            node = queue.popleft()
            res.append(node.val)
            if node.left:queue.append(node.left)
            if node.right:queue.append(node.right)
        return res
        

以上是关于Leetcode刷题Python剑指 Offer 32 - I. 从上到下打印二叉树的主要内容,如果未能解决你的问题,请参考以下文章

Leetcode刷题Python剑指 Offer 30. 包含min函数的栈

Leetcode刷题Python剑指 Offer II 082. 含有重复元素集合的组合

Leetcode刷题Python剑指 Offer 32 - I. 从上到下打印二叉树

Leetcode刷题Python剑指 Offer 04. 二维数组中的查找

Leetcode刷题Python剑指 Offer 11. 旋转数组的最小数字

Leetcode刷题Python剑指 Offer 18. 删除链表的节点