A_star_c_plus_plus

This is my simple implementation of A* algorithm in C++.

The map is defined as follows:
'#': Obsctacle
' ': Free space
'S': Start
'G': Goal

Map is defined in main.cpp. You can play with map. Make sure to follow the above convention.