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

https://github.com/syncush/astar-and-ids-implementation

Java implemetation of IDS and A* algorithm
https://github.com/syncush/astar-and-ids-implementation

Last synced: 9 months ago
JSON representation

Java implemetation of IDS and A* algorithm

Awesome Lists containing this project

README

          

# Artificial Intelligence
# Graph search problems

###################################Input##################################

A .txt file describing the Map we will search route in, there are special
types of tile, Dirt road, Water, Asphalt , Hill.
The car can't go thorugh water tiles are go in diagonal against water tiles.

############################################################################

##################################Output####################################

A .txt file with direction how to get from start point to goal point.

############################################################################

#A* uses Air distance heuristic function.

For both A* and IDS I implemneted duplicate pruning !

Java implemetation of IDS and A* algorithm