Skip to content

Latest commit

 

History

History
executable file
·
25 lines (22 loc) · 451 Bytes

File metadata and controls

executable file
·
25 lines (22 loc) · 451 Bytes

题目

Given a binary tree, return the level order traversal of its nodes' values. (ie, from left to right, level by level).

For example: Given binary tree [3,9,20,null,null,15,7],

    3
   / \
  9  20
    /  \
   15   7

return its level order traversal as:

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

解题思路

见程序注释