Skip to content

Commit

Permalink
feat: revise README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
fiteen committed Dec 25, 2019
1 parent 5b10686 commit bc9a660
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
| 排序算法 | 时间复杂度 | 最差情况 | 最好情况 | 空间复杂度 | 稳定性 | 排序方式 |
| :----------------------: | :--------: | :------: | :------: | :--------: | :----: | :-------: |
| [计数排序](CountingSort) | O(n+k)​ | O(n+k)​ | O(n+k)​ | O(n+k)​ | 稳定 | Out-place |
| [桶排序](BubbleSort) | O(n+k)​ | O(n²) | O(n)​ | O(n+m)​ | 稳定 | Out-place |
| [桶排序](BucketSort) | O(n+k)​ | O(n²) | O(n)​ | O(n+m)​ | 稳定 | Out-place |
| 基数排序 | O(n×k)​ | O(n×k)​ | O(n×k)​ | O(n+k)​ | 稳定 | Out-place |


Expand Down

0 comments on commit bc9a660

Please sign in to comment.