Skip to content

The most optimal Dijkstra's algorithm in python

Notifications You must be signed in to change notification settings

LiamCrsd/Dijkstra

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

Dijkstra

The most optimal Dijkstra's algorithm in python

Parameters :

  • dict graphe : graph on which we wish to apply the algorithm.
  • *a start_vertex : starting vertex of the type contained in the graph

Returns :

  • dict D : dictionary associating a vertex and its distance from the initial vertex.
  • dict V : dictionary associating a vertex and its parent vertex in the shortest path between it and the initial vertex.

About

The most optimal Dijkstra's algorithm in python

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages