码迷,mamicode.com
首页 > 编程语言 > 详细

【python-leetcode102-树的宽度遍历】二叉树的层次遍历

时间:2020-02-28 20:57:12      阅读:54      评论:0      收藏:0      [点我收藏+]

标签:col   tree   pop   val   访问   one   node   nod   none   

问题描述:

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

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

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

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

 

代码:

# Definition for a binary tree node.
# class TreeNode:
#     def __init__(self, x):
#         self.val = x
#         self.left = None
#         self.right = None

class Solution:
    def levelOrder(self, root: TreeNode) -> List[List[int]]:
        if not root:
            return []
        queue=[root]
        res=[]
        while queue:
            tmp=[] 
            for i in range(len(queue)):
                node=queue.pop(0)
                tmp.append(node.val)
                if node.left:
                    queue.append(node.left)
                if node.right:
                    queue.append(node.right)
            res.append(tmp)
        return res

 

【python-leetcode102-树的宽度遍历】二叉树的层次遍历

标签:col   tree   pop   val   访问   one   node   nod   none   

原文地址:https://www.cnblogs.com/xiximayou/p/12378627.html

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