mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-10 18:48:13 +08:00
66 lines
1.5 KiB
HTML
66 lines
1.5 KiB
HTML
<p>给定一棵二叉树的根节点 <code>root</code> ,请找出该二叉树中每一层的最大值。</p>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>示例1:</strong></p>
|
||
|
||
<pre>
|
||
<strong>输入: </strong>root = [1,3,2,5,3,null,9]
|
||
<strong>输出: </strong>[1,3,9]
|
||
<strong>解释:</strong>
|
||
1
|
||
/ \
|
||
3 2
|
||
/ \ \
|
||
5 3 9
|
||
</pre>
|
||
|
||
<p><strong>示例2:</strong></p>
|
||
|
||
<pre>
|
||
<strong>输入: </strong>root = [1,2,3]
|
||
<strong>输出: </strong>[1,3]
|
||
<strong>解释:</strong>
|
||
1
|
||
/ \
|
||
2 3
|
||
</pre>
|
||
|
||
<p><strong>示例3:</strong></p>
|
||
|
||
<pre>
|
||
<strong>输入: </strong>root = [1]
|
||
<strong>输出: </strong>[1]
|
||
</pre>
|
||
|
||
<p><strong>示例4:</strong></p>
|
||
|
||
<pre>
|
||
<strong>输入: </strong>root = [1,null,2]
|
||
<strong>输出: </strong>[1,2]
|
||
<strong>解释:</strong>
|
||
1
|
||
\
|
||
2
|
||
</pre>
|
||
|
||
<p><strong>示例5:</strong></p>
|
||
|
||
<pre>
|
||
<strong>输入: </strong>root = []
|
||
<strong>输出: </strong>[]
|
||
</pre>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>提示:</strong></p>
|
||
|
||
<ul>
|
||
<li>二叉树的节点个数的范围是 <code>[0,10<sup>4</sup>]</code></li>
|
||
<li><meta charset="UTF-8" /><code>-2<sup>31</sup> <= Node.val <= 2<sup>31</sup> - 1</code></li>
|
||
</ul>
|
||
|
||
<p> </p>
|
||
|
||
<p><meta charset="UTF-8" />注意:本题与主站 515 题相同: <a href="https://leetcode-cn.com/problems/find-largest-value-in-each-tree-row/">https://leetcode-cn.com/problems/find-largest-value-in-each-tree-row/</a></p>
|