Skip to content

Latest commit

 

History

History
5 lines (3 loc) · 517 Bytes

README.md

File metadata and controls

5 lines (3 loc) · 517 Bytes

robot-pathfinding-astar

An implementation of the A Star algorithm for a robot moving on a NxN tile. The robot can only see and move to adjacent tiles but retains memory of visited tiles. The A-Star algorithm is used in conjunction with a Depth-First-Search algorithm, tailored specifically to support the A-Star in moving the robot towards non-adjacent tiles. The algorithm's speed is acceptable.

Exclaimer: the GridWorld classes and its inner classes were written by Dr. Armando Tacchella, Università Di Genova