Module: sorting/3-way-string-quicksort

Effective inplace string sorting algorithm. Algorithm is NOT stable.
Parameters:
Name Type Description
arr Array array which should be sorted.
Source:
Returns:
Sorted array.
Type
Array
Example
var sort = require('path-to-algorithms/src/sorting'+
'/3-way-string-quicksort').quicksort;
console.log(sort(['bb', 'aa', 'cc'])); // [ 'aa', 'bb', 'cc' ]