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

https://github.com/ivanbgd/a-star_algorithm

Several different implementations of the A-Star search algorithm, including a Bidirectional version - used for finding the shortest path in a graph.
https://github.com/ivanbgd/a-star_algorithm

a-star-algorithm bidirectional-a-star-algorithm graph-algorithms graphs planar-graphs python

Last synced: 12 months ago
JSON representation

Several different implementations of the A-Star search algorithm, including a Bidirectional version - used for finding the shortest path in a graph.

Awesome Lists containing this project

README

          

# A-Star (A*) Algorithm

Several different implementations of the [A-Star search algorithm](https://en.wikipedia.org/wiki/A*_search_algorithm), including a Bidirectional version.

The algorithm is used for graph traversal and for finding the shortest path in a graph.

It is an improved version of the [Dijkstra's Shortest path algorithm](https://en.wikipedia.org/wiki/Dijkstra%27s_algorithm).