Use underline format for the technical terms (#1213)

* Use underline format for the technical terms

* Bug fixes
This commit is contained in:
Yudong Jin
2024-04-03 03:52:17 +08:00
committed by GitHub
parent 06068927cd
commit 2b1a98fb61
42 changed files with 105 additions and 105 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
# 归并排序
归并排序 merge sort是一种基于分治策略的排序算法,包含下图所示的“划分”和“合并”阶段。
<u>归并排序merge sort</u>是一种基于分治策略的排序算法,包含下图所示的“划分”和“合并”阶段。
1. **划分阶段**:通过递归不断地将数组从中点处分开,将长数组的排序问题转换为短数组的排序问题。
2. **合并阶段**:当子数组长度为 1 时终止划分,开始合并,持续地将左右两个较短的有序数组合并为一个较长的有序数组,直至结束。