Skip to content

Commit

Permalink
Update 04.Array-Shell-Sort.md
Browse files Browse the repository at this point in the history
  • Loading branch information
itcharge committed Aug 16, 2023
1 parent 26f3b54 commit 1319204
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Contents/01.Array/02.Array-Sort/04.Array-Shell-Sort.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

> **希尔排序(Shell Sort)基本思想**
>
> 将整个序列切按照一定的间隔取值划分为若干个子序列,每个子序列分别进行插入排序。然后逐渐缩小间隔进行下一轮划分子序列和对子序列进行插入排序。直至最后一轮排序间隔为 `1`,对整个序列进行插入排序。
> 将整个序列切按照一定的间隔取值划分为若干个子序列,每个子序列分别进行插入排序。然后逐渐缩小间隔进行下一轮划分子序列和对子序列进行插入排序。直至最后一轮排序间隔为 $1$,对整个序列进行插入排序。
>
## 2. 希尔排序算法步骤
Expand Down

0 comments on commit 1319204

Please sign in to comment.