Skip to content

Implementation of A*, DFS, BFS, GBFS search algorithms using JavaScript

Notifications You must be signed in to change notification settings

M-Adil-AS/AI-Search

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AI-Search

Implementation of A*, DFS, BFS, GBFS search algorithms using JavaScript.

This project helps to understand how these algorithms work and how do they compare to each other. The program applies these algorithms to find solution of different mazes.

'I' represents the initial state/node whereas 'G' represents the goal state/node.

Demo Instructions:

Enter Maze No: 1 OR 2 OR 3
Show Solution OR Explored Nodes (S OR E)
Enter Algorithm No: 1. A*, 2. BFS, 3. DFS, 4.GBFS

Demo URL: https://m-adil-as.github.io/AI-Search

Maze1