Skip to content

tristanls/node-heap-sort

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

heap-sort

Stability: 1 - Experimental

Heap sort.

Usage

var heapSort = require('heap-sort');
...
var ascending  = heapSort(array);        // sort ascending
var descending = heapSort(array, false); // sort descending