Skip to content

Add shortest path algorithms #161

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Nov 3, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 52 additions & 0 deletions data_structures/Graph/BellmanFord.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
def printDist(dist, V):
print("\nVertex Distance")
for i in range(V):
if dist[i] != float('inf') :
print(i,"\t",int(dist[i]),end = "\t")
else:
print(i,"\t","INF",end="\t")
print();

def BellmanFord(graph, V, E, src):
mdist=[float('inf') for i in range(V)]
mdist[src] = 0.0;

for i in range(V-1):
for j in range(V):
u = graph[j]["src"]
v = graph[j]["dst"]
w = graph[j]["weight"]

if mdist[u] != float('inf') and mdist[u] + w < mdist[v]:
mdist[v] = mdist[u] + w
for j in range(V):
u = graph[j]["src"]
v = graph[j]["dst"]
w = graph[j]["weight"]

if mdist[u] != float('inf') and mdist[u] + w < mdist[v]:
print("Negative cycle found. Solution not possible.")
return

printDist(mdist, V)



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

graph = [dict() for j in range(E)]

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[i] = {"src": src,"dst": dst, "weight": weight}

gsrc = int(input("\nEnter shortest path source:"))
BellmanFord(graph, V, E, gsrc)
56 changes: 56 additions & 0 deletions data_structures/Graph/Dijkstra.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@

def printDist(dist, V):
print("\nVertex Distance")
for i in range(V):
if dist[i] != float('inf') :
print(i,"\t",int(dist[i]),end = "\t")
else:
print(i,"\t","INF",end="\t")
print();

def minDist(mdist, vset, V):
minVal = float('inf')
minInd = -1
for i in range(V):
if (not vset[i]) and mdist[i] < minVal :
minInd = i
minVal = mdist[i]
return minInd

def Dijkstra(graph, V, src):
mdist=[float('inf') for i in range(V)]
vset = [False for i in range(V)]
mdist[src] = 0.0;

for i in range(V-1):
u = minDist(mdist, vset, V)
vset[u] = True;

for v in range(V):
if (not vset[v]) and graph[u][v]!=float('inf') and mdist[u] + graph[u][v] < mdist[v]:
mdist[v] = mdist[u] + graph[u][v]



printDist(mdist, 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;

gsrc = int(input("\nEnter shortest path source:"))
Dijkstra(graph, V, gsrc)
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)