Skip to content

Commit

Permalink
Update 01.Linked-List-Sort.md
Browse files Browse the repository at this point in the history
  • Loading branch information
itcharge committed Jan 11, 2022
1 parent 2812680 commit 624994a
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@

> 需要用到额外的辅助空间进行排序的算法
上边说到如果一定要对链表进行堆排序,则需要使用额外的数组空间。除此之外,计数排序、桶排序、基数排序都需要用到额外的数组空间。
刚才我们说到如果一定要对链表进行堆排序,则需要使用额外的数组空间。除此之外,计数排序、桶排序、基数排序都需要用到额外的数组空间。

接下来,我们将对适合链表排序的 8 种算法进行一一讲解。当然,这些排序算法不用完全掌握,重点是掌握 **「链表插入排序」****「链表归并排序」** 这两种排序算法。

## 2. 链表冒泡排序

Expand Down

0 comments on commit 624994a

Please sign in to comment.