1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-11 18:31:41 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

存量题库数据更新

This commit is contained in:
2023-12-09 18:42:21 +08:00
parent a788808cd7
commit c198538f10
10843 changed files with 288489 additions and 248355 deletions

View File

@@ -1,8 +1,8 @@
<p>一棵二叉树 <code>root</code>,返回所有<strong>重复的子树</strong></p>
<p>一棵二叉树的根节点 <code>root</code> ,返回所有 <strong>重复的子树 </strong></p>
<p>对于同一类的重复子树,你只需要返回其中任意<strong>一棵</strong>的根结点即可。</p>
<p>对于同一类的重复子树,你只需要返回其中任意 <strong>一棵 </strong>的根结点即可。</p>
<p>如果两棵树具有<strong>相同的结构</strong><strong>相同的结点值</strong>,则它们是<strong>重复</strong>的。</p>
<p>如果两棵树具有<strong> 相同的结构</strong><strong>相同的结点值 </strong>,则认为二者是 <strong>重复 </strong>的。</p>
<p>&nbsp;</p>
@@ -35,6 +35,6 @@
<p><strong>提示:</strong></p>
<ul>
<li>树中的结点数在<code>[1,10^4]</code>范围内。</li>
<li>树中的结点数在 <code>[1, 5000]</code> 范围内。</li>
<li><code>-200 &lt;= Node.val &lt;= 200</code></li>
</ul>