0.1.2 • Published 10 years ago

sortie v0.1.2

Weekly downloads
4
License
-
Repository
github
Last release
10 years ago

sortie

Sort algorithms

  • bubbleSort
  • selectionSort
  • insertionSort
  • mergeSort

Examples

Install the module with: npm install sortie

var sortie = require('sortie');

var numbers = [3, 1, 2];
console.log(sortie.insertionSort(numbers));
// expect [1, 2, 3]

var words = ['cat', 'dog', 'bird'];
console.log(sortie.bubbleSort(words));
// expect ['bird', 'cat', 'dog']

License

Copyright (c) 2014 Mustafa Rizvi
Licensed under the MIT license.

0.1.2

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago