Skip to content

Latest commit

 

History

History

0429.N-ary Tree Level Order Traversal

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

题目描述

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

例如,给定一个 3叉树 :

 

 

返回其层序遍历:

[

     [1],

     [3,2,4],

     [5,6]

]

 

说明:

    <li>树的深度不会超过&nbsp;<code>1000</code>。</li>
    
    <li>树的节点总数不会超过&nbsp;<code>5000</code>。</li>
    

解法

Python3

Java

...