From 08d165b32bac4f5d59c61793b565f2e144b305a8 Mon Sep 17 00:00:00 2001 From: Kitten9533 <1173860556@qq.com> Date: Mon, 4 Dec 2023 15:11:00 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E5=BF=AB=E9=80=9F?= =?UTF-8?q?=E6=8E=92=E5=BA=8F=E4=BB=A3=E7=A0=81=E4=B8=AD=E7=9A=84=E7=AC=94?= =?UTF-8?q?=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/algorithm/quickSort.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/algorithm/quickSort.md b/docs/algorithm/quickSort.md index 5a8455cd..51f90352 100644 --- a/docs/algorithm/quickSort.md +++ b/docs/algorithm/quickSort.md @@ -55,7 +55,7 @@ function quickSort (arr) { } return [...rec(left), mid, ...rec(right)] } - return res(arr) + return rec(arr) }; ``` @@ -77,4 +77,4 @@ function quickSort (arr) { ## 参考文献 - https://baike.baidu.com/item/%E5%BF%AB%E9%80%9F%E6%8E%92%E5%BA%8F%E7%AE%97%E6%B3%95/369842 -- https://www.cnblogs.com/l199616j/p/10597245.html \ No newline at end of file +- https://www.cnblogs.com/l199616j/p/10597245.html