chhaichivon / AI-Search-Algorithms

This contains my Java based implementations for uninformed search strategies which inlcude BFS, DFS and A* algorithm in AI Spring 2018 class.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AI-Java-Assignments

This contains my Java based implementations for implementing BFS, DFS and A* algorithm in AI class.

It contains 6 Java files:

  1. SearchUSA - Main Java Class

  2. City

  3. RoadPath

  4. SearchBFS

  5. SearchDFS

  6. SearchASTAR

There are 2 text files :

  1. roads.txt - It contains comma separated values of the connected cities.

  2. cities.txt - It contains comma separated values of the city's latitude and longitudinal data.

The paths for text files have been written : SearchASTAR at <lines 20,21> SearchBFS at <line 20> SearchDFS at <line 20>

Steps to Compile : javac SearchUSA.java

Run : java SearchUSA <BFS/DFS/ASTAR>

About

This contains my Java based implementations for uninformed search strategies which inlcude BFS, DFS and A* algorithm in AI Spring 2018 class.


Languages

Language:Java 100.0%