mirror of
https://hub.njuu.cf/TheAlgorithms/Python.git
synced 2023-10-11 13:06:12 +08:00
Add doctest and fix mypy type annotation in bellman ford (#4506)
This commit is contained in:
parent
2899cdac20
commit
3ea5a13334
@ -1,56 +1,73 @@
|
|||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
|
|
||||||
def printDist(dist, V):
|
def print_distance(distance: list[float], src):
|
||||||
print("Vertex Distance")
|
print(f"Vertex\tShortest Distance from vertex {src}")
|
||||||
distances = ("INF" if d == float("inf") else d for d in dist)
|
for i, d in enumerate(distance):
|
||||||
print("\t".join(f"{i}\t{d}" for i, d in enumerate(distances)))
|
print(f"{i}\t\t{d}")
|
||||||
|
|
||||||
|
|
||||||
def BellmanFord(graph: list[dict[str, int]], V: int, E: int, src: int) -> int:
|
def check_negative_cycle(
|
||||||
|
graph: list[dict[str, int]], distance: list[float], edge_count: int
|
||||||
|
):
|
||||||
|
for j in range(edge_count):
|
||||||
|
u, v, w = [graph[j][k] for k in ["src", "dst", "weight"]]
|
||||||
|
if distance[u] != float("inf") and distance[u] + w < distance[v]:
|
||||||
|
return True
|
||||||
|
return False
|
||||||
|
|
||||||
|
|
||||||
|
def bellman_ford(
|
||||||
|
graph: list[dict[str, int]], vertex_count: int, edge_count: int, src: int
|
||||||
|
) -> list[float]:
|
||||||
"""
|
"""
|
||||||
Returns shortest paths from a vertex src to all
|
Returns shortest paths from a vertex src to all
|
||||||
other vertices.
|
other vertices.
|
||||||
|
>>> edges = [(2, 1, -10), (3, 2, 3), (0, 3, 5), (0, 1, 4)]
|
||||||
|
>>> g = [{"src": s, "dst": d, "weight": w} for s, d, w in edges]
|
||||||
|
>>> bellman_ford(g, 4, 4, 0)
|
||||||
|
[0.0, -2.0, 8.0, 5.0]
|
||||||
|
>>> g = [{"src": s, "dst": d, "weight": w} for s, d, w in edges + [(1, 3, 5)]]
|
||||||
|
>>> bellman_ford(g, 4, 5, 0)
|
||||||
|
Traceback (most recent call last):
|
||||||
|
...
|
||||||
|
Exception: Negative cycle found
|
||||||
"""
|
"""
|
||||||
mdist = [float("inf") for i in range(V)]
|
distance = [float("inf")] * vertex_count
|
||||||
mdist[src] = 0.0
|
distance[src] = 0.0
|
||||||
|
|
||||||
for i in range(V - 1):
|
for i in range(vertex_count - 1):
|
||||||
for j in range(E):
|
for j in range(edge_count):
|
||||||
u = graph[j]["src"]
|
u, v, w = [graph[j][k] for k in ["src", "dst", "weight"]]
|
||||||
v = graph[j]["dst"]
|
|
||||||
w = graph[j]["weight"]
|
|
||||||
|
|
||||||
if mdist[u] != float("inf") and mdist[u] + w < mdist[v]:
|
if distance[u] != float("inf") and distance[u] + w < distance[v]:
|
||||||
mdist[v] = mdist[u] + w
|
distance[v] = distance[u] + w
|
||||||
for j in range(E):
|
|
||||||
u = graph[j]["src"]
|
|
||||||
v = graph[j]["dst"]
|
|
||||||
w = graph[j]["weight"]
|
|
||||||
|
|
||||||
if mdist[u] != float("inf") and mdist[u] + w < mdist[v]:
|
negative_cycle_exists = check_negative_cycle(graph, distance, edge_count)
|
||||||
print("Negative cycle found. Solution not possible.")
|
if negative_cycle_exists:
|
||||||
return
|
raise Exception("Negative cycle found")
|
||||||
|
|
||||||
printDist(mdist, V)
|
return distance
|
||||||
return src
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
import doctest
|
||||||
|
|
||||||
|
doctest.testmod()
|
||||||
|
|
||||||
V = int(input("Enter number of vertices: ").strip())
|
V = int(input("Enter number of vertices: ").strip())
|
||||||
E = int(input("Enter number of edges: ").strip())
|
E = int(input("Enter number of edges: ").strip())
|
||||||
|
|
||||||
graph = [dict() for j in range(E)]
|
graph: list[dict[str, int]] = [dict() for j in range(E)]
|
||||||
|
|
||||||
for i in range(E):
|
for i in range(E):
|
||||||
graph[i][i] = 0.0
|
print("Edge ", i + 1)
|
||||||
|
src, dest, weight = [
|
||||||
|
int(x)
|
||||||
|
for x in input("Enter source, destination, weight: ").strip().split(" ")
|
||||||
|
]
|
||||||
|
graph[i] = {"src": src, "dst": dest, "weight": weight}
|
||||||
|
|
||||||
for i in range(E):
|
source = int(input("\nEnter shortest path source:").strip())
|
||||||
print("\nEdge ", i + 1)
|
shortest_distance = bellman_ford(graph, V, E, source)
|
||||||
src = int(input("Enter source:").strip())
|
print_distance(shortest_distance, 0)
|
||||||
dst = int(input("Enter destination:").strip())
|
|
||||||
weight = float(input("Enter weight:").strip())
|
|
||||||
graph[i] = {"src": src, "dst": dst, "weight": weight}
|
|
||||||
|
|
||||||
gsrc = int(input("\nEnter shortest path source:").strip())
|
|
||||||
BellmanFord(graph, V, E, gsrc)
|
|
||||||
|
Loading…
Reference in New Issue
Block a user