From 773e718be6a26ff8b92e42ef2b0281b079863c2f Mon Sep 17 00:00:00 2001 From: Cavin Date: Mon, 30 Jan 2023 15:44:59 +0800 Subject: [PATCH] Update intro_to_sort.md (#310) 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 c4d50c535..2a1c184e7 100644 --- a/docs/chapter_sorting/intro_to_sort.md +++ b/docs/chapter_sorting/intro_to_sort.md @@ -66,7 +66,7 @@ comments: true ## 理想排序算法 -- **运行地快**,即时间复杂度低; +- **运行快**,即时间复杂度低; - **稳定排序**,即排序后相等元素的相对位置不变化; - **原地排序**,即运行中不使用额外的辅助空间; - **正向自适应性**,即算法的运行效率不会在某些输入数据下发生劣化;