leetcode-----102. 二叉树的层序遍历
Posted 景云
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode-----102. 二叉树的层序遍历相关的知识,希望对你有一定的参考价值。
/**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode(int x) { val = x; }
* }
*/
class Solution {
public List<List<Integer>> levelOrder(TreeNode root) {
Queue<TreeNode> q = new LinkedList<>();
q.add(root);
List<List<Integer>> ans = new ArrayList<>();
if (root == null) return ans;
while (!q.isEmpty()) {
List<Integer> l = new ArrayList<>();
int sz = q.size();
for (int i = 0; i < sz; ++i) {
TreeNode t = q.poll();
l.add(t.val);
if (t.left != null) {
q.add(t.left);
}
if (t.right != null) {
q.add(t.right);
}
}
ans.add(l);
}
return ans;
}
}
以上是关于leetcode-----102. 二叉树的层序遍历的主要内容,如果未能解决你的问题,请参考以下文章
#yyds干货盘点# leetcode-102. 二叉树的层序遍历