Skip to content
Closed
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
41 changes: 39 additions & 2 deletions dynamic_programming/floyd_warshall.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,56 @@
] # dp[i][j] stores minimum distance from i to j

def add_edge(self, u, v, w):
"""
Adds a directed edge from node u to node v with weight w.

>>> g = Graph(3)
>>> g.add_edge(0, 1, 5)
>>> g.dp[0][1]
5
"""
self.dp[u][v] = w

def floyd_warshall(self):
"""
Computes the shortest paths between all pairs of nodes using the Floyd-Warshall algorithm.

Check failure on line 27 in dynamic_programming/floyd_warshall.py

View workflow job for this annotation

GitHub Actions / ruff

Ruff (E501)

dynamic_programming/floyd_warshall.py:27:89: E501 Line too long (98 > 88)

>>> g = Graph(3)
>>> g.add_edge(0, 1, 1)
>>> g.add_edge(1, 2, 2)
>>> g.floyd_warshall()
>>> g.show_min(0, 2)
3
>>> g.show_min(2, 0)
inf
"""
for k in range(self.n):
for i in range(self.n):
for j in range(self.n):
self.dp[i][j] = min(self.dp[i][j], self.dp[i][k] + self.dp[k][j])

def show_min(self, u, v):
"""
Returns the minimum distance from node u to node v.

>>> g = Graph(3)
>>> g.add_edge(0, 1, 3)
>>> g.add_edge(1, 2, 4)
>>> g.floyd_warshall()
>>> g.show_min(0, 2)
7
>>> g.show_min(1, 0)
inf
"""
return self.dp[u][v]


if __name__ == "__main__":
import doctest

doctest.testmod()

# Example usage
graph = Graph(5)
graph.add_edge(0, 2, 9)
graph.add_edge(0, 4, 10)
Expand All @@ -38,5 +75,5 @@
graph.add_edge(4, 2, 4)
graph.add_edge(4, 3, 9)
graph.floyd_warshall()
graph.show_min(1, 4)
graph.show_min(0, 3)
print(graph.show_min(1, 4))
print(graph.show_min(0, 3))
Loading