Skip to content

mayanklonkar/Path-planning-algorithms

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 

Repository files navigation

Path-planning-algorithms

Objective

Visualizations of the two most popular path planning algorithms, Dijkstra's and A*, are implemented in this repository using Pygame.

In this visualisation, the following colour represents

  • Blue - Start box
  • Yellow - Target box
  • Navy blue - Final path
  • Grey - Obstacles
  • Green - Box visited

Dijkstra

Dijkstra is used to find shortest path between nodes in a graph. It searches each and every node till it reaches target position.

A*

A* is one of the most successful search algorithms to find the shortest path between nodes or graphs. It is an informed search algorithm that uses information about path cost and heuristics (distance from current node to the target node) to find the solution.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages