[0515] 在每个树行中找最大值
- GitHub
- http://leetcode.xuezhisd.top/post/279934a4.html
- https://leetcode.com/problems/find-largest-value-in-each-tree-row
- https://leetcode-cn.com/problems/find-largest-value-in-each-tree-row
题目描述
您需要在二叉树的每一行中找到最大的值。
示例:
输入:
1
/ \
3 2
/ \ \
5 3 9
输出: [1, 3, 9]
</pre>
Related Topics
题目解析
- [请一句话描述题目…]
不确定性
方法一:[算法名称]
分析
思路
注意
知识点
复杂度
代码
1 | // |
方法二:[算法名称]
分析
思路
注意
知识点
复杂度
代码
1 | // |