This project contains a Java and Python Grid based implementation of the A* (A Star) path planning algorithm. It includes an example test driver command line program.
Grid Maps for the algorithm can be created manually or read from a text file generated using this online ascii maze generator tool.
The code for the Java and Python implementations are in their respective folders of this repo and contains additional usage instructions.
Code written by Maurice Tedder (based on the Java Applet by James Macgill - https://www.ccg.leeds.ac.uk/james/aStar/
and the following references.
-
Information about A* algorithm by: Patel, Amits. Amit's A* Pages. Retrieved on February 2005 from https://theory.stanford.edu/~amitp/GameProgramming.
-
https://www.redblobgames.com/pathfinding/a-star/introduction.html
-
https://www.redblobgames.com/pathfinding/a-star/implementation.html#optimize-queue
Written with StackEdit.