429. N-ary Tree Level Order Traversal
Medium
Last updated
Medium
Last updated
Given an n-ary tree, return the level order traversal of its nodes' values.
Nary-Tree input serialization is represented in their level order traversal, each group of children is separated by the null value (See examples).
Example 1:
Example 2:
Constraints:
The height of the n-ary tree is less than or equal to 1000
The total number of nodes is between [0, 104]
以上面範例測資二為例,此程式碼放入的順序如下:
[]
[[1]]
[[1] [2]]
[[1] [2 3]]
[[1] [2 3] [6]]
[[1] [2 3] [6 7]]
[[1] [2 3] [6 7] [11]]
[[1] [2 3] [6 7] [11] [14]]
[[1] [2 3 4] [6 7] [11] [14]]
[[1] [2 3 4] [6 7 8] [11] [14]]
[[1] [2 3 4] [6 7 8] [11 12] [14]]
[[1] [2 3 4 5] [6 7 8] [11 12] [14]]
[[1] [2 3 4 5] [6 7 8 9] [11 12] [14]]
[[1] [2 3 4 5] [6 7 8 9] [11 12 13] [14]]
[[1],[2,3,4,5],[6,7,8,9,10],[11,12,13],[14]]