mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-04 06:51:41 +08:00
存量题库数据更新
This commit is contained in:
@@ -3,14 +3,14 @@
|
||||
<p>Return <em>the root of the trimmed binary search tree</em>. Note that the root may change depending on the given bounds.</p>
|
||||
|
||||
<p> </p>
|
||||
<p><strong>Example 1:</strong></p>
|
||||
<p><strong class="example">Example 1:</strong></p>
|
||||
<img alt="" src="https://assets.leetcode.com/uploads/2020/09/09/trim1.jpg" style="width: 450px; height: 126px;" />
|
||||
<pre>
|
||||
<strong>Input:</strong> root = [1,0,2], low = 1, high = 2
|
||||
<strong>Output:</strong> [1,null,2]
|
||||
</pre>
|
||||
|
||||
<p><strong>Example 2:</strong></p>
|
||||
<p><strong class="example">Example 2:</strong></p>
|
||||
<img alt="" src="https://assets.leetcode.com/uploads/2020/09/09/trim2.jpg" style="width: 450px; height: 277px;" />
|
||||
<pre>
|
||||
<strong>Input:</strong> root = [3,0,4,null,2,null,null,1], low = 1, high = 3
|
||||
@@ -21,7 +21,7 @@
|
||||
<p><strong>Constraints:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>The number of nodes in the tree in the range <code>[1, 10<sup>4</sup>]</code>.</li>
|
||||
<li>The number of nodes in the tree is in the range <code>[1, 10<sup>4</sup>]</code>.</li>
|
||||
<li><code>0 <= Node.val <= 10<sup>4</sup></code></li>
|
||||
<li>The value of each node in the tree is <strong>unique</strong>.</li>
|
||||
<li><code>root</code> is guaranteed to be a valid binary search tree.</li>
|
||||
|
Reference in New Issue
Block a user