Skip to content

Commit

Permalink
Site updated: 2024-06-14 13:12:56
Browse files Browse the repository at this point in the history
  • Loading branch information
novelyear committed Jun 14, 2024
1 parent acc783d commit ee7e9b8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions 2024/06/14/leetcode-day23/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@
<meta name="author" content="Leoo Yann">
<meta name="keywords" content="">

<meta name="description" content="今日任务: 669. 修剪二叉搜索树 medium 108. 将有序数组转换为二叉搜索树 easy 538. 把二叉搜索树转换为累加树 669. 修剪二叉搜索树题目: 给你二叉搜索树的根节点 root ,同时给定最小边界low 和最大边界 high。通过修剪二叉搜索树,使得所有节点的值在[low, high]中。修剪树 不应该 改变保留在树中的元素的相对结构 (即,如果没有被移除,原">
<meta name="description" content="今日任务: 669. 修剪二叉搜索树 medium 108. 将有序数组转换为二叉搜索树 easy 538. 把二叉搜索树转换为累加树 medium 669. 修剪二叉搜索树题目: 给你二叉搜索树的根节点 root ,同时给定最小边界low 和最大边界 high。通过修剪二叉搜索树,使得所有节点的值在[low, high]中。修剪树 不应该 改变保留在树中的元素的相对结构 (">
<meta property="og:type" content="article">
<meta property="og:title" content="leetcode_day23">
<meta property="og:url" content="http://novelyear.github.io/2024/06/14/leetcode-day23/index.html">
<meta property="og:site_name" content="novelyear&#39;s home">
<meta property="og:description" content="今日任务: 669. 修剪二叉搜索树 medium 108. 将有序数组转换为二叉搜索树 easy 538. 把二叉搜索树转换为累加树 669. 修剪二叉搜索树题目: 给你二叉搜索树的根节点 root ,同时给定最小边界low 和最大边界 high。通过修剪二叉搜索树,使得所有节点的值在[low, high]中。修剪树 不应该 改变保留在树中的元素的相对结构 (即,如果没有被移除,原">
<meta property="og:description" content="今日任务: 669. 修剪二叉搜索树 medium 108. 将有序数组转换为二叉搜索树 easy 538. 把二叉搜索树转换为累加树 medium 669. 修剪二叉搜索树题目: 给你二叉搜索树的根节点 root ,同时给定最小边界low 和最大边界 high。通过修剪二叉搜索树,使得所有节点的值在[low, high]中。修剪树 不应该 改变保留在树中的元素的相对结构 (">
<meta property="og:locale" content="zh_CN">
<meta property="article:published_time" content="2024-06-14T03:24:29.000Z">
<meta property="article:modified_time" content="2024-06-14T05:11:03.140Z">
<meta property="article:modified_time" content="2024-06-14T05:12:40.632Z">
<meta property="article:author" content="Leoo Yann">
<meta property="article:tag" content="leetcode">
<meta name="twitter:card" content="summary_large_image">
Expand Down Expand Up @@ -318,8 +318,8 @@ <h1 id="seo-header">leetcode_day23</h1>
<p>今日任务:</p>
<ul>
<li><a target="_blank" rel="noopener" href="https://leetcode.cn/problems/trim-a-binary-search-tree/description/">669. 修剪二叉搜索树</a> <span class="label label-warning">medium</span></li>
<li><a target="_blank" rel="noopener" href="https://leetcode.cn/problems/convert-sorted-array-to-binary-search-tree/description/">108. 将有序数组转换为二叉搜索树</a> <span class="label label-success">easy</span></li>
<li><a target="_blank" rel="noopener" href="https://leetcode.cn/problems/convert-bst-to-greater-tree/description/">538. 把二叉搜索树转换为累加树</a></li>
<li><a target="_blank" rel="noopener" href="https://leetcode.cn/problems/convert-sorted-array-to-binary-search-tree/description/">108. 将有序数组转换为二叉搜索树</a> <span class="label label-success">easy</span></li>
<li><a target="_blank" rel="noopener" href="https://leetcode.cn/problems/convert-bst-to-greater-tree/description/">538. 把二叉搜索树转换为累加树</a> <span class="label label-warning">medium</span></li>
</ul>
<h1 id="669-修剪二叉搜索树"><a href="#669-修剪二叉搜索树" class="headerlink" title="669. 修剪二叉搜索树"></a>669. 修剪二叉搜索树</h1><p><strong>题目:</strong></p>
<p>给你二叉搜索树的根节点 <code>root</code> ,同时给定最小边界<code>low</code> 和最大边界 <code>high</code>。通过修剪二叉搜索树,使得所有节点的值在<code>[low, high]</code>中。修剪树 <strong>不应该</strong> 改变保留在树中的元素的相对结构 (即,如果没有被移除,原有的父代子代关系都应当保留)。 可以证明,存在 <strong>唯一的答案</strong></p>
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ <h2 class="index-header">

<a class="index-excerpt index-excerpt__noimg" href="/2024/06/14/leetcode-day23/" target="_self">
<div>
今日任务: 669. 修剪二叉搜索树 medium 108. 将有序数组转换为二叉搜索树 easy 538. 把二叉搜索树转换为累加树 669. 修剪二叉搜索树题目: 给你二叉搜索树的根节点 root ,同时给定最小边界low 和最大边界 high。通过修剪二叉搜索树,使得所有节点的值在[low, high]中。修剪树 不应该 改变保留在树中的元素的相对结构 (即,如果没有被移除,原
今日任务: 669. 修剪二叉搜索树 medium 108. 将有序数组转换为二叉搜索树 easy 538. 把二叉搜索树转换为累加树 medium 669. 修剪二叉搜索树题目: 给你二叉搜索树的根节点 root ,同时给定最小边界low 和最大边界 high。通过修剪二叉搜索树,使得所有节点的值在[low, high]中。修剪树 不应该 改变保留在树中的元素的相对结构 (
</div>
</a>

Expand Down
Loading

0 comments on commit ee7e9b8

Please sign in to comment.