Skip to content

Commit

Permalink
Update 03.Array-Insertion-Sort.md
Browse files Browse the repository at this point in the history
  • Loading branch information
itcharge committed Sep 27, 2022
1 parent 837073b commit 469b014
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Contents/01.Array/02.Array-Sort/03.Array-Insertion-Sort.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
>
> 将整个序列分为两部分:前面 `i` 个元素为有序序列,后面 `n - i` 个元素为无序序列。每一次排序,将无序序列的第 `1` 个元素,在有序序列中找到相应的位置并插入。
简单来说,「选择排序算法」是在每一趟排序中,将无序序列的第 `1` 个元素,插入到有序序列的适当位置上。
简单来说,「插入排序算法」是在每一趟排序中,将无序序列的第 `1` 个元素,插入到有序序列的适当位置上。

## 2. 插入排序算法步骤

Expand Down

0 comments on commit 469b014

Please sign in to comment.