@extra-array/insertion-sort
TypeScript icon, indicating that this package has built-in type declarations

2.9.41 • Public • Published

Arranges values in an order. 🏃 📼 📦 🌔 📒

Alternatives: sort, sort$.
Similar: sort, merge.
This is part of package extra-array.

array.insertionSort(x, [fc], [fm]);
// x:  an array
// fc: compare function (a, b)
// fm: map function (v, i, x)
const array = require('extra-array');

var x = [-2, -3, 1, 4];
array.insertionSort(x);
// [ -3, -2, 1, 4 ] (compares numbers)

array.insertionSort(x, (a, b) => Math.abs(a) - Math.abs(b));
// [ 1, -2, -3, 4 ]

array.insertionSort(x, null, v => Math.abs(v));
// [ 1, -2, -3, 4 ]

references

Package Sidebar

Install

npm i @extra-array/insertion-sort

Weekly Downloads

53

Version

2.9.41

License

MIT

Unpacked Size

14.6 kB

Total Files

24

Last publish

Collaborators

  • wolfram77