remove extra space (#1477)

* remove extra space

* Update max_capacity_problem.md

* Update algorithms_are_everywhere.md

---------

Co-authored-by: Yudong Jin <krahets@163.com>
This commit is contained in:
Seven Du
2024-08-06 15:04:53 +08:00
committed by GitHub
parent 0bff488383
commit fc7efa28a7
6 changed files with 6 additions and 6 deletions

View File

@@ -8,7 +8,7 @@
1. 翻开字典约一半的页数,查看该页的首字母是什么,假设首字母为 $m$ 。
2. 由于在拼音字母表中 $r$ 位于 $m$ 之后,所以排除字典前半部分,查找范围缩小到后半部分。
3. 不断重复步骤 `1.` 步骤 `2.` ,直至找到拼音首字母为 $r$ 的页码为止。
3. 不断重复步骤 `1.` 和步骤 `2.` ,直至找到拼音首字母为 $r$ 的页码为止。
=== "<1>"
![查字典步骤](algorithms_are_everywhere.assets/binary_search_dictionary_step1.png)