Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 704 Bytes

README.md

File metadata and controls

20 lines (15 loc) · 704 Bytes

quick-sort

Stability: 1 - Experimental

Quick sort.

Usage

var quickSort = require('quick-sort');
...
var ascending  = quickSort(array);                              // sort ascending
var descending = quickSort(array, undefined, undefined, false); // sort descending
// sort ascending using randomized partitioning
var ascending  = quickSort(array, undefined, undefined, true, true);  
// sort descending using randomized partitioning
var descending = quickSort(array, undefined, undefined, false, true); 

yes, the descending case is sort of crappy usage, I doubt anyone will use this code though :)