首页 > 其他 > 详细

LeetCode--429--N叉树的层序遍历

时间:2018-10-02 10:31:28      阅读:187      评论:0      收藏:0      [点我收藏+]

问题描述:

给定一个N叉树,返回其节点值的层序遍历。 (即从左到右,逐层遍历)。

 

例如,给定一个 3叉树 :

 

技术分享图片

 

返回其层序遍历:

[
     [1],
     [3,2,4],
     [5,6]
]

 

说明:

  1. 树的深度不会超过 1000
  2. 树的节点总数不会超过 5000

方法1:

 1 class Solution(object):
 2     def levelOrder(self, root):
 3         """
 4         :type root: Node
 5         :rtype: List[List[int]]
 6         """
 7         if not root:
 8             return []
 9         res = [[]]
10         que = [(root,0)]
11         while que:
12             node,level = que.pop(0)
13             if level >= len(res):
14                 res.append([])
15             res[level].append(node.val)
16             for child in node.children:
17                 que.append((child,level + 1))
18         return res

 方法2:

 1 class Solution(object):
 2     def levelOrder(self, root):
 3         """
 4         :type root: Node
 5         :rtype: List[List[int]]
 6         """
 7         if not root:
 8             return []
 9         levels = []#结果存放
10         q = [root]
11         while q:
12             new_q = []#当前层的结点
13             level=[]#当前层的结点的val
14             for node in q:
15                 level.append(node.val)
16                 for child in node.children:
17                     new_q.append(child)
18             levels.append(level)#把当前层的val加入到结果集中
19             q = new_q
20         return levels

2018-10-02 09:14:56

LeetCode--429--N叉树的层序遍历

原文:https://www.cnblogs.com/NPC-assange/p/9736334.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!