Skip to content
This repository has been archived by the owner on Oct 15, 2018. It is now read-only.

Latest commit

 

History

History
5 lines (3 loc) · 310 Bytes

README.md

File metadata and controls

5 lines (3 loc) · 310 Bytes

A* Implementation

This is an A* implementation I did in my spare time. It requires C++11 in order to run.

This implemetation works for 2D grids and uses the Manhattan Distance heuristic. Note that it was made in a way that the heuristics is detached from the algorithm, so it can be changed if required.