mirror of
https://github.com/TheAlgorithms/JavaScript.git
synced 2025-07-05 00:01:37 +08:00
Improved main description comment | Flash Sort
This commit is contained in:
@ -1,7 +1,9 @@
|
||||
/*
|
||||
* Flashsort is a distribution sorting algorithm showing linear computational complexity O(n) for uniformly distributed
|
||||
/**
|
||||
* Flashsort is a distribution sorting algorithm showing linear
|
||||
* computational complexity O(n) for uniformly distributed
|
||||
* data sets and relatively little additional memory requirement.
|
||||
* more information: https://en.wikipedia.org/wiki/Flashsort
|
||||
*
|
||||
* Wikipedia: https://en.wikipedia.org/wiki/Flashsort
|
||||
*/
|
||||
|
||||
function flashSort (arr) {
|
||||
|
Reference in New Issue
Block a user