Merge pull request #608 from qckzr/patch-1, fix #607

Update README.md
This commit is contained in:
Libin Yang 2018-10-28 11:02:52 +08:00 committed by GitHub
commit fdc887ea6f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -58,7 +58,7 @@ From [Wikipedia][quick-wiki]: Quicksort (sometimes called partition-exchange sor
__Properties__
* Worst case performance O(n^2)
* Best case performance O(n log n) or O(n) with three-way partition
* Average case performance O(n^2)
* Average case performance O(n log n)
###### View the algorithm in [action][quick-toptal]