@extra-array/bubble-sort.min
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.

This is browserified, minified version of @extra-array/bubble-sort.
It is exported as global variable array_bubbleSort.
CDN: unpkg, jsDelivr.

array.bubbleSort(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.bubbleSort(x);
// [ -3, -2, 1, 4 ] (compares numbers)

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

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

references

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i @extra-array/bubble-sort.min

      Weekly Downloads

      0

      Version

      2.9.41

      License

      MIT

      Unpacked Size

      14.7 kB

      Total Files

      24

      Last publish

      Collaborators

      • wolfram77