From 39934ebb83005bf22be86b2e53c285e8f5f1fe1d Mon Sep 17 00:00:00 2001 From: DanielChen Date: Thu, 7 Jun 2018 13:28:37 +0800 Subject: [PATCH] Fix the translation of sorting complexity table (#55) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Array "Sorting" Algorithms Complexity should be 陣列排序演算法, not 陣列搜尋演算法 --- README.zh-TW.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.zh-TW.md b/README.zh-TW.md index 649a4902..a52a4cd9 100644 --- a/README.zh-TW.md +++ b/README.zh-TW.md @@ -197,7 +197,7 @@ npm test -- -t 'playground' | **紅黑樹** | log(n) | log(n) | log(n) | log(n) | | **AVL Tree** | log(n) | log(n) | log(n) | log(n) | -### 陣列搜尋演算法複雜度 +### 陣列排序演算法複雜度 | 名稱 | 最佳 | 平均 | 最差 | 記憶體 | 穩定 | | --------------------- | :-------: | :-------: | :-----------: | :-------: | :-------: |