sorting-algorithms-js
1.0.2 • Public • Published
A collection of sorting algorithms implemented in JavaScript.
npm install sorting-algorithms-js
import { bubbleSort, quickSort } from 'sorting-algorithms-js';
const arr = [5, 3, 8, 4, 2];
const sortedArray = quickSort(arr);
console.log(sortedArray); // Output: [2, 3, 4, 5, 8]
Versions
Version | Downloads (Last 7 Days) | Tag |
---|
1.0.2 | 4 | latest |
Version History
Version | Downloads (Last 7 Days) | Published |
---|
1.0.2 | 4 | |
1.0.1 | 1 | |
1.0.0 | 2 | |
Package Sidebar
Install
npm i sorting-algorithms-js
Weekly Downloads