/Dijkstra-Algo

Single-Source Shortest Path Problem

Primary LanguageC++

Dijkstra-Algo <3

alt text alt text

Single-Source Shortest Path Problem - The problem of finding shortest paths from a source vertex v to all other vertices in the graph.
Applications:-

  • Maps (Map Quest, Google Maps)
  • Routing Systems

Dijkstra's algorithm - is a solution to the single-source shortest path problem in graph theory.   
Works on both directed and undirected graphs. However, all edges must have nonnegative weights.
Feel free to *fork* and improve my implementation to more efficient one ;).