Algoritmul lui Dijkstra

Cod copiat de pe http://www.geeksforgeeks.org/   // A C / C++ program for Dijkstra’s single source shortest path algorithm. // The program is for adjacency matrix representation of the graph #include <stdio.h> #include <limits.h> // Number of vertices in the graph #define V 6 // A utility function to find the vertex with minimum distance value,…