问题描述
LeetCode 102. 二叉树的层序遍历 (opens in a new tab),难度中等。
给你二叉树的根节点 root
,返回其节点值的 层序遍历 。 (即逐层地,从左到右访问所有节点)。
示例 1
输入:root = [3,9,20,null,null,15,7] 输出:[[3],[9,20],[15,7]]
示例 2
输入:root = [1] 输出:[[1]]
示例 3
输入:root = [] 输出:[]
提示:
- 树中节点数目在范围
[0, 2000]
内 -1000 <= Node.val <= 1000
题解
Solution.java
class Solution {
public List<List<Integer>> levelOrder(TreeNode root) {
List<List<Integer>> ans = new ArrayList<>();
if (root == null) return ans;
Queue<TreeNode> q = new ArrayDeque<>();
q.add(root);
while (!q.isEmpty()) {
int size = q.size();
List<Integer> temp = new ArrayList<>();
for (int i = 0; i < size; ++i) {
TreeNode top = q.poll();
if (top != null) {
temp.add(top.val);
if (top.left != null) q.add(top.left);
if (top.right != null) q.add(top.right);
}
}
ans.add(temp);
}
return ans;
}
}