UID:20BCS3972 Date of Performance:: WS8 Write A Program To Implement Floyd-Warshall Algorithm
UID:20BCS3972 Date of Performance:: WS8 Write A Program To Implement Floyd-Warshall Algorithm
2. Task to be done:
Implementation pf floyd-warshall.
We initialize the solution matrix same as the input graph matrix as a first step.
Then we update the solution matrix by considering all vertices as an intermediate vertex.
The idea is to one by one pick all vertices and updates all shortest paths which include the picked vertex as an
intermediate vertex in the shortest path. When we pick vertex number k as an intermediate vertex, we already have
considered vertices {0, 1, 2, .. k-1} as intermediate vertices. For every pair (i, j) of the source and destination
vertices respectively, there are two possible cases.
1) k is not an intermediate vertex in shortest path from i to j. We keep the value of dist[i][j] as it is.
2) k is an intermediate vertex in shortest path from i to j. We update the value of dist[i][j] as dist[i][k] + dist[k][j] if
dist[i][j] > dist[i][k] + dist[k][j]
The following figure shows the above optimal substructure property in the all-pairs shortest path problem.
#include <bits/stdc++.h>
using namespace std;
#define V 4
int dist[V][V], i, j, k;
printSolution(dist);
}
int main()
{
\
int graph[V][V] = { { 0, 5, INF, 10 },
{ INF, 0, 3, INF },
{ INF, INF, 0, 1 },
{ INF, INF, INF, 0 } };
floydWarshall(graph);
return 0;
}
5. Result/Output/Writing Summary:
Learning outcomes (What I have learnt):
1. Floyd –Warshall Algorithm
Evaluation Grid (To be created as per the SOP and Assessment guidelines by the faculty):