algomart
v0.0.5
Published
Collection of algorithms in javascript
Downloads
31
Readme
AlgoMart
Collection of algorithms in javascript
Sorting Algorithm
- Bubble Sort -
bubbleSort
- Insertion Sort -
insertionSort
- Selection Sort -
selectionSort
- Quick Sort -
quickSort
- Merge Sort -
mergeSort
- Heap Sort -
heapSort
Sample Code
const algomart = require('algomart')
console.log(algomart.algorithm.sort.bubbleSort([3, 2, 1]))