Arranges values in an order.
npm install @extra-array/selection-sortArranges values in an order. [:running:] [:vhs:] [:package:] [:moon:] [:ledger:]
> Alternatives: [sort], [sort$].
> Similar: [sort], [merge].
> This is part of package [extra-array].
[extra-array]: https://www.npmjs.com/package/extra-array
``javascript`
array.selectionSort(x, [fc], [fm]);
// x: an array
// fc: compare function (a, b)
// fm: map function (v, i, x)
`javascript
const array = require('extra-array');
var x = [-2, -3, 1, 4];
array.selectionSort(x);
// [ -3, -2, 1, 4 ] (compares numbers)
array.selectionSort(x, (a, b) => Math.abs(a) - Math.abs(b));
// [ 1, -2, -3, 4 ]
array.selectionSort(x, null, v => Math.abs(v));
// [ 1, -2, -3, 4 ]
``
- 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
[sort]: https://github.com/nodef/extra-array/wiki/sort
[sort$]: https://github.com/nodef/extra-array/wiki/sort$
[merge]: https://github.com/nodef/extra-array/wiki/merge
[:running:]: https://npm.runkit.com/@extra-array/selection-sort
[:package:]: https://www.npmjs.com/package/@extra-array/selection-sort
[:moon:]: https://www.npmjs.com/package/@extra-array/selection-sort.min
[:ledger:]: https://unpkg.com/@extra-array/selection-sort/
[:vhs:]: https://asciinema.org/a/334741