From d93b8b35b1433d09a1ffe5e712068772f458cf95 Mon Sep 17 00:00:00 2001 From: liufq <315458488@qq.com> Date: Fri, 24 Feb 2023 18:20:24 +0800 Subject: [PATCH] =?UTF-8?q?1.=E5=BD=92=E5=B9=B6=E7=AE=97=E6=B3=95=E6=8E=92?= =?UTF-8?q?=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../exercies.md" | 2 ++ 1 file changed, 2 insertions(+) diff --git "a/exercises/liufq/\344\270\255\347\255\211/\345\275\222\345\271\266\346\216\222\345\272\217/exercies.md" "b/exercises/liufq/\344\270\255\347\255\211/\345\275\222\345\271\266\346\216\222\345\272\217/exercies.md" index 54b8051..d389427 100644 --- "a/exercises/liufq/\344\270\255\347\255\211/\345\275\222\345\271\266\346\216\222\345\272\217/exercies.md" +++ "b/exercises/liufq/\344\270\255\347\255\211/\345\275\222\345\271\266\346\216\222\345\272\217/exercies.md" @@ -1,6 +1,8 @@ # 归并排序 你需要用归并排序算法,对数组进行排序,并输出按照升序排序的字符数字串 +归并排序算法的基本思想是将两个(或两个以上)有序表合并成一个新的有序表, +即把待排序序列分为若干个子序列,每个子序列是有序的。然后再把有序子序列合并为整体有序序列。 ## 输入描述 -- GitLab