Fix the translation of sorting complexity table (#55)

Array "Sorting" Algorithms Complexity should be 陣列排序演算法, not 陣列搜尋演算法
This commit is contained in:
DanielChen 2018-06-07 13:28:37 +08:00 committed by Oleksii Trekhleb
parent 294bd2acb7
commit 39934ebb83

View File

@ -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) |
### 陣列搜尋演算法複雜度
### 陣列排序演算法複雜度
| 名稱 | 最佳 | 平均 | 最差 | 記憶體 | 穩定 |
| --------------------- | :-------: | :-------: | :-----------: | :-------: | :-------: |