@extra-array/bubble-sort
v2.9.41
Published
Arranges values in an order.
Downloads
48
Maintainers
Readme
Arranges values in an order. :running: :vhs: :package: :moon: :ledger:
Alternatives: sort, sort$. Similar: sort, merge. This is part of package extra-array.
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
- Data.Sort.sortBy: Haskell
- Array.prototype.sort: MDN web docs
- Bubble Sort: Wikipedia
- bubble-sort: @tristanls
- algo-sort-bubble: @bredele
- bubblesort: @addyosmani
- sort-bubble: @lukebro
- bubble-sort-js: @JacopoDaeli
- bubble-srt: @abranhe
- b-sort: alkuhar
- @clarketm/superbubblesort: @clarketm
- sort-algorithms-js: @eyas-ranjous
- sort-types: @dalalayan1
- sorting-helpers: @AntoniAngga
- sorti: @nadavgld
- sortie: @mustafar
- sorting: @lakhaNamdhari
- plentiful: @ajnauleau
- sort-all-in-one: @OnlyRefat
- sort-algorithms: @sombrerolgringo
- sorting-algorithms: @luongnv89
- js-sorting: @jasonheecs
- js-sorting-algo: @kumar-gaurav-mishra
- @ds-javascript/sort: @opensourcedj217
- sorting-algorithms-rajan: @rajanmidun
- best-sort: @agniswarm