Skip to content

Implementation of different path finding algorithms

Notifications You must be signed in to change notification settings

nehagupta1738/Flames

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Flame

welcome to Navigation to Marse rover path finding algorithms. Algorithms used:-

-->DIJKSTRA'S ALGORITHM it is the father of all path finding algorithms guarantee the shortest path.

-->A* SEARCH it is the best path finding algorithm guarantee the shortest path. faster than dijkstra's algorithm.

-->BEST-FIRST SEARCH heuristic-heavy version of A* does't guarantee the shortest path.

-->BREATH-FIRST SEARCH (bfs) guarantee the shortest path.

-->DEPTH-FIRST SEARCH (dfs) too bad algorithm. slow. doesn't guarantee the shortest path.

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 58.4%
  • CSS 40.4%
  • HTML 1.2%