Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nicorobo/algorhythm
A javascript library that makes it easy to work with certain algorithms. At first the library will focus on path finding and graph/grid algorithms, and will expand in scope with time.
https://github.com/nicorobo/algorhythm
Last synced: 24 days ago
JSON representation
A javascript library that makes it easy to work with certain algorithms. At first the library will focus on path finding and graph/grid algorithms, and will expand in scope with time.
- Host: GitHub
- URL: https://github.com/nicorobo/algorhythm
- Owner: nicorobo
- Created: 2015-01-19T02:24:28.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-01-28T17:16:58.000Z (almost 10 years ago)
- Last Synced: 2023-10-15T10:12:32.092Z (about 1 year ago)
- Language: JavaScript
- Homepage: http://nickroberts404.github.io/Algorhythm-Demo/
- Size: 313 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Algorhythm
A javascript library that makes it easy to work with certain algorithms. At first the library will focus on path finding and graph/grid algorithms, and will expand in scope with time.
(In progress)Current Data Structures:
- Graph
- Grid
- Binary Heap (Courtesy of Marijn Haverbeke)
Current Algorithms:
- Breadth First Search
- Dijkstras
- Greedy Best First Search
- A*