102.二叉树的层次遍历
题目
给定一个二叉树,返回其按层次遍历的节点值。 (即逐层地,从左到右访问所有节点)。1
2
3
4
5
6
7
8
9
10
11
12
13
14
15例如:
给定二叉树: [3,9,20,null,null,15,7],
3
/ \
9 20
/ \
15 7
返回其层次遍历结果:
[
[3],
[9,20],
[15,7]
]
方法
方法1:宽度优先遍历
1 | # Definition for a binary tree node. |
1 | # Definition for a binary tree node. |
1 | class Solution(object): |