jkstra icon indicating copy to clipboard operation
jkstra copied to clipboard

JavaScript graph routing library

Results 6 jkstra issues
Sort by recently updated
recently updated
newest added

Have you considered switching out from your own priority queue implementation to a Fibonacci Heap implementation? FH has one of the best amortized runtimes for Dijkstra implementations. The [mnemonist](https://www.npmjs.com/package/mnemonist) library...

Also fixes a deprecation warning in mocha

- [x] A\* (by just adding a simple heuristic function parameter to Dijkstra?) - [x] Bidirectionnal Dijkstra (and A*) - [ ] Dijkstra on edges (a la PG Routing Shooting...

TODO

Example: - matrix based - shared adjacency list instead of lists by node - efficient storage for undirected graphs

TODO