Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/tyxla/js-algorithms
- Owner: tyxla
- License: gpl-2.0
- Created: 2015-02-03T20:39:35.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-06-14T18:41:07.000Z (over 9 years ago)
- Last Synced: 2023-04-09T23:59:45.117Z (over 1 year ago)
- Language: JavaScript
- Size: 324 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.