1. lower-case nouns

2. fix 2 figures
3. Replace some 「」 by “”
This commit is contained in:
krahets
2023-08-20 23:28:30 +08:00
parent 2626de8d0b
commit 981144e42d
48 changed files with 174 additions and 162 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
# 归并排序
「归并排序 Merge Sort」基于分治思想实现排序,包含“划分”和“合并”两个阶段:
「归并排序 merge sort」基于分治思想实现排序,包含“划分”和“合并”两个阶段:
1. **划分阶段**:通过递归不断地将数组从中点处分开,将长数组的排序问题转换为短数组的排序问题。
2. **合并阶段**:当子数组长度为 1 时终止划分,开始合并,持续地将左右两个较短的有序数组合并为一个较长的有序数组,直至结束。