File tree 4 files changed +5
-5
lines changed
4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -292,7 +292,7 @@ <h2 id="_1">前言</h2>
292
292
< blockquote >
293
293
< p > < img src ="./img/bulb.png " height ="30px " width ="auto " style ="margin: 0; border: none "/> 本书还在持续更新中……要追番的话,可以在 < a href ="https://github.com/parallel101/cppguidebook "> GitHub</ a > 点一下右上角的 “Watch” 按钮,每当小彭老师提交新 commit,GitHub 会向你发送一封电子邮件,提醒你小彭老师更新了。</ p >
294
294
</ blockquote >
295
- < p > 更新时间:2024年09月19日 10:55:53 (UTC+08:00)</ p >
295
+ < p > 更新时间:2024年09月19日 10:56:23 (UTC+08:00)</ p >
296
296
< p > < a href ="https://parallel101.github.io/cppguidebook "> 在 GitHub Pages 浏览本书</ a > | < a href ="https://142857.red/book "> 在小彭老师自己维护的镜像上浏览本书</ a > </ p >
297
297
< h2 id ="_2 "> 格式约定</ h2 >
298
298
< blockquote >
Original file line number Diff line number Diff line change @@ -421,7 +421,7 @@ <h2 id="index-_1">前言</h2>
421
421
<blockquote>
422
422
<p><img src="../img/bulb.png" height="30px" width="auto" style="margin: 0; border: none"/> 本书还在持续更新中……要追番的话,可以在 <a href="https://github.com/parallel101/cppguidebook">GitHub</a> 点一下右上角的 “Watch” 按钮,每当小彭老师提交新 commit,GitHub 会向你发送一封电子邮件,提醒你小彭老师更新了。</p>
423
423
</blockquote>
424
- <p>更新时间:2024年09月19日 10:55:53 (UTC+08:00)</p>
424
+ <p>更新时间:2024年09月19日 10:56:23 (UTC+08:00)</p>
425
425
<p><a href="https://parallel101.github.io/cppguidebook">在 GitHub Pages 浏览本书</a> | <a href="https://142857.red/book">在小彭老师自己维护的镜像上浏览本书</a></p>
426
426
<h2 id="index-_2">格式约定</h2>
427
427
<blockquote>
@@ -6902,7 +6902,7 @@ <h3 id="stl_map-_12">二叉排序树与二分法</h3>
6902
6902
<ol>
6903
6903
<li>从根节点开始查找。</li>
6904
6904
<li>如果当前节点的键小于要找的键,则往左子节点移动;</li>
6905
- <li>如果当前节点的键大于要找的键,则往左子节点移动 ;</li>
6905
+ <li>如果当前节点的键大于要找的键,则往右子节点移动 ;</li>
6906
6906
<li>如果当前节点的键等于要找的键,则该节点就是要找的节点,返回该节点。</li>
6907
6907
<li>如果当前节点已经是最后一层叶子节点,也没找到相等的键,则说明该键不存在。</li>
6908
6908
<li>把左/右子节点设为新的当前节点,然后回到第 2 步,重复这一查找过程。</li>
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -943,7 +943,7 @@ <h3 id="_12">二叉排序树与二分法</h3>
943
943
< ol >
944
944
< li > 从根节点开始查找。</ li >
945
945
< li > 如果当前节点的键小于要找的键,则往左子节点移动;</ li >
946
- < li > 如果当前节点的键大于要找的键,则往左子节点移动 ;</ li >
946
+ < li > 如果当前节点的键大于要找的键,则往右子节点移动 ;</ li >
947
947
< li > 如果当前节点的键等于要找的键,则该节点就是要找的节点,返回该节点。</ li >
948
948
< li > 如果当前节点已经是最后一层叶子节点,也没找到相等的键,则说明该键不存在。</ li >
949
949
< li > 把左/右子节点设为新的当前节点,然后回到第 2 步,重复这一查找过程。</ li >
You can’t perform that action at this time.
0 commit comments