[0102] 二叉树的层次遍历
- GitHub
- http://leetcode.xuezhisd.top/post/74123f6a.html
- https://leetcode.com/problems/binary-tree-level-order-traversal
- https://leetcode-cn.com/problems/binary-tree-level-order-traversal
题目描述
给定一个二叉树,返回其按层次遍历的节点值。 (即逐层地,从左到右访问所有节点)。
例如:
给定二叉树: [3,9,20,null,null,15,7]
,
3 / \ 9 20 / \ 15 7
返回其层次遍历结果:
[ [3], [9,20], [15,7] ]
Related Topics
题目解析
- [请一句话描述题目…]
不确定性
方法一:[算法名称]
分析
思路
注意
知识点
复杂度
代码
1 | // |
方法二:[算法名称]
分析
思路
注意
知识点
复杂度
代码
1 | // |