Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tyxla/js-algorithms

JavaScript implementations of various algorithms.
https://github.com/tyxla/js-algorithms

Last synced: about 1 month ago
JSON representation

JavaScript implementations of various algorithms.

Awesome Lists containing this project

README

        

JS Algorithms
=============

JavaScript implementations of various algorithms.

### Sorting

##### Selection
* Selection Sort
* Heapsort

##### Insertion
* Insertion Sort
* Insertion Binary Sort
* Insertion Sort - Recursive
* Shell Sort

##### Exchange
* Bubble Sort
* Gnome Sort
* Cocktail Sort
* Odd-Even Sort
* Quicksort
* Comb Sort
* Bogosort

##### Merge
* Merge Sort

##### Distribution
* Radix Sort
* Flash Sort
* Bucket Sort
* Counting Sort

##### Misc
* Pancake Sort
* Adaptive Sort

---

### Note

Various algorithms will get added in the future.

Any suggestions for new algorithms and/or improvements are welcome.