Skip to content

Commit

Permalink
Add Floyd-Warshall Algorithm
Browse files Browse the repository at this point in the history
  • Loading branch information
arpanjain97 committed Oct 13, 2017
1 parent 176c330 commit 00575aa
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions data_structures/Graph/FloydWarshall.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@

def printDist(dist, V):
print("\nThe shortest path matrix using Floyd Warshall algorithm\n")
for i in range(V):
for j in range(V):
if dist[i][j] != float('inf') :
print(int(dist[i][j]),end = "\t")
else:
print("INF",end="\t")
print();



def FloydWarshall(graph, V):
dist=[[float('inf') for i in range(V)] for j in range(V)]

for i in range(V):
for j in range(V):
dist[i][j] = graph[i][j]

for k in range(V):
for i in range(V):
for j in range(V):
if dist[i][k]!=float('inf') and dist[k][j]!=float('inf') and dist[i][k]+dist[k][j] < dist[i][j]:
dist[i][j] = dist[i][k] + dist[k][j]

printDist(dist, V)



#MAIN
V = int(input("Enter number of vertices: "));
E = int(input("Enter number of edges: "));

graph = [[float('inf') for i in range(V)] for j in range(V)]

for i in range(V):
graph[i][i] = 0.0;

for i in range(E):
print("\nEdge ",i+1)
src = int(input("Enter source:"))
dst = int(input("Enter destination:"))
weight = float(input("Enter weight:"))
graph[src][dst] = weight;

FloydWarshall(graph, V)

0 comments on commit 00575aa

Please sign in to comment.