Merge pull request #247 from antfitch/antfitch-patch-2

Updated average case for Quicksort
This commit is contained in:
Harshil 2018-02-01 07:28:56 +05:30 committed by GitHub
commit 1da1e2016c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -55,7 +55,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]