Skip to content

Add docstr and algorithm to BFS shortest path module #1637

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
Dec 19, 2019
Merged
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
71 changes: 69 additions & 2 deletions graphs/bfs_shortest_path.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
"""Breadth-first search shortest path implementations.

doctest:
python -m doctest -v bfs_shortest_path.py

Manual test:
python bfs_shortest_path.py
"""
graph = {
"A": ["B", "C", "E"],
"B": ["A", "D", "E"],
Expand All @@ -9,7 +17,22 @@
}


def bfs_shortest_path(graph, start, goal):
def bfs_shortest_path(graph: dict, start, goal) -> str:
"""Find shortest path between `start` and `goal` nodes.

Args:
graph (dict): node/list of neighboring nodes key/value pairs.
start: start node.
goal: target node.

Returns:
Shortest path between `start` and `goal` nodes as a string of nodes.
'Not found' string if no path found.

Example:
>>> bfs_shortest_path(graph, "G", "D")
['G', 'C', 'A', 'B', 'D']
"""
# keep track of explored nodes
explored = []
# keep track of all the paths to be checked
Expand Down Expand Up @@ -44,4 +67,48 @@ def bfs_shortest_path(graph, start, goal):
return "So sorry, but a connecting path doesn't exist :("


bfs_shortest_path(graph, "G", "D") # returns ['G', 'C', 'A', 'B', 'D']
def bfs_shortest_path_distance(graph: dict, start, target) -> int:
"""Find shortest path distance between `start` and `target` nodes.

Args:
graph: node/list of neighboring nodes key/value pairs.
start: node to start search from.
target: node to search for.

Returns:
Number of edges in shortest path between `start` and `target` nodes.
-1 if no path exists.

Example:
>>> bfs_shortest_path_distance(graph, "G", "D")
4
>>> bfs_shortest_path_distance(graph, "A", "A")
0
>>> bfs_shortest_path_distance(graph, "A", "H")
-1
"""
if not graph or start not in graph or target not in graph:
return -1
if start == target:
return 0
queue = [start]
visited = [start]
# Keep tab on distances from `start` node.
dist = {start: 0, target: -1}
while queue:
node = queue.pop(0)
if node == target:
dist[target] = (
dist[node] if dist[target] == -1 else min(dist[target], dist[node])
)
for adjacent in graph[node]:
if adjacent not in visited:
visited.append(adjacent)
queue.append(adjacent)
dist[adjacent] = dist[node] + 1
return dist[target]


if __name__ == "__main__":
print(bfs_shortest_path(graph, "G", "D")) # returns ['G', 'C', 'A', 'B', 'D']
print(bfs_shortest_path_distance(graph, "G", "D")) # returns 4