sortie

0.1.2 • Public • Published

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.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.1.2
    2
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.1.2
    2
  • 0.1.1
    1
  • 0.1.0
    1

Package Sidebar

Install

npm i sortie

Weekly Downloads

4

Version

0.1.2

License

none

Last publish

Collaborators

  • mustafar