mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-23 21:11:08 +00:00
Adding Doctests to floyd_warshall.py (#11690)
* Ruff test resolution * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
This commit is contained in:
parent
918fa8bb8a
commit
f4b4ac159a
|
@ -12,19 +12,58 @@ class Graph:
|
||||||
] # dp[i][j] stores minimum distance from i to j
|
] # dp[i][j] stores minimum distance from i to j
|
||||||
|
|
||||||
def add_edge(self, u, v, w):
|
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
|
self.dp[u][v] = w
|
||||||
|
|
||||||
def floyd_warshall(self):
|
def floyd_warshall(self):
|
||||||
|
"""
|
||||||
|
Computes the shortest paths between all pairs of
|
||||||
|
nodes using the Floyd-Warshall algorithm.
|
||||||
|
|
||||||
|
>>> 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 k in range(self.n):
|
||||||
for i in range(self.n):
|
for i in range(self.n):
|
||||||
for j 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])
|
self.dp[i][j] = min(self.dp[i][j], self.dp[i][k] + self.dp[k][j])
|
||||||
|
|
||||||
def show_min(self, u, v):
|
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]
|
return self.dp[u][v]
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
import doctest
|
||||||
|
|
||||||
|
doctest.testmod()
|
||||||
|
|
||||||
|
# Example usage
|
||||||
graph = Graph(5)
|
graph = Graph(5)
|
||||||
graph.add_edge(0, 2, 9)
|
graph.add_edge(0, 2, 9)
|
||||||
graph.add_edge(0, 4, 10)
|
graph.add_edge(0, 4, 10)
|
||||||
|
@ -38,5 +77,9 @@ if __name__ == "__main__":
|
||||||
graph.add_edge(4, 2, 4)
|
graph.add_edge(4, 2, 4)
|
||||||
graph.add_edge(4, 3, 9)
|
graph.add_edge(4, 3, 9)
|
||||||
graph.floyd_warshall()
|
graph.floyd_warshall()
|
||||||
graph.show_min(1, 4)
|
print(
|
||||||
graph.show_min(0, 3)
|
graph.show_min(1, 4)
|
||||||
|
) # Should output the minimum distance from node 1 to node 4
|
||||||
|
print(
|
||||||
|
graph.show_min(0, 3)
|
||||||
|
) # Should output the minimum distance from node 0 to node 3
|
||||||
|
|
Loading…
Reference in New Issue
Block a user