From 15e964973aa53336c4b3adc36fa750fce224414e Mon Sep 17 00:00:00 2001 From: iron-irax <78189623+iron-irax@users.noreply.github.com> Date: Fri, 16 Dec 2022 17:05:07 +0800 Subject: [PATCH] Update intro_to_sort.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 字符缺失 : "相等素"->"相等元素" --- docs/chapter_sorting/intro_to_sort.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/chapter_sorting/intro_to_sort.md b/docs/chapter_sorting/intro_to_sort.md index 15c2cc6b2..df84ce13e 100644 --- a/docs/chapter_sorting/intro_to_sort.md +++ b/docs/chapter_sorting/intro_to_sort.md @@ -20,7 +20,7 @@ comments: true ### 稳定性 - 「稳定排序」在完成排序后,**不改变** 相等元素在数组中的相对顺序。 -- 「非稳定排序」在完成排序后,相等素在数组中的相对位置 **可能被改变**。 +- 「非稳定排序」在完成排序后,相等元素在数组中的相对位置 **可能被改变**。 假设我们有一个存储学生信息当表格,第 1, 2 列分别是姓名和年龄。那么在以下示例中,「非稳定排序」会导致输入数据的有序性丢失。因此「稳定排序」是很好的特性,**在多级排序中是必须的**。