This code implements and demonstrates various graph traversal algorithms (BFS,...
April 4, 2025 at 01:48 AM
This code implements and demonstrates various graph traversal algorithms (BFS, DFS, bidirectional BFS, and bidirectional DFS) and provides a user interface to input a graph and nodes to test the traversal methods. Here's a breakdown of what the code does:
-
Breadth-First Search (BFS):
- The function
bfs(graph, start_node, end_node)
performs a breadth-first search on the given graph, starting from thestart_node
and aiming to reach theend_node
. - It uses a queue (
deque
) to traverse layer by layer, and a visited set to keep track of already visited nodes. - Returns the path from
start_node
toend_node
if found; otherwise, returns an empty list.
- The function
-
Depth-First Search (DFS):
- The function
dfs(graph, start_node, end_node)
performs a depth-first search on the graph starting fromstart_node
. - It uses a stack (LIFO structure) to explore deeper paths first, and a visited set to avoid revisiting nodes.
- Returns the path from
start_node
toend_node
if found; otherwise, returns an empty list.
- The function
-
Bidirectional BFS:
- The function
bidirectional_bfs(graph, start_node, end_node)
performs a bidirectional breadth-first search fromstart_node
andend_node
simultaneously. - Tracks visited nodes separately from each frontier (forward and backward), and looks for an intersection between the two.
- Uses the helper function
construct_path
to construct the final path by combining the paths from both directions. - Returns the path if the nodes are connected, or an empty list if no connection exists.
- The function
-
Bidirectional DFS:
- The function
bidirectional_dfs(graph, start_node, end_node)
performs a bidirectional depth-first search in a similar fashion to bidirectional BFS, but explores the graph in a depth-first manner. - The helper function
dfs_partial
handles partial DFS from either start or end nodes, checking whether paths intersect with the opposite visited set. - Returns the combined path if the nodes are connected, or an empty list otherwise.
- The function
-
Helper Function
construct_path
:- This function aids the bidirectional BFS solution by reconstructing the complete path from the
start_node
toend_node
after the two frontiers meet.
- This function aids the bidirectional BFS solution by reconstructing the complete path from the
-
User Interaction (
main()
):- The
main()
function allows the user to enter a graph interactively as an adjacency list (e.g.,A B C
meansA
connects toB
andC
). - It then accepts a starting node and ending node, and runs all four traversal algorithms (BFS, DFS, bidirectional BFS, and bidirectional DFS) on the input graph.
- Displays the path results for each algorithm.
- The
Key Features:
- Supports unweighted, directed graphs.
- Explores and displays the path between nodes using multiple traversal methods.
- Demonstrates the difference between BFS, DFS, and their bidirectional counterparts in terms of search strategy.
Usage:
- When run, this script prompts the user to input the graph and nodes to explore.
- It calculates and prints the paths found by BFS, DFS, bidirectional BFS, and bidirectional DFS. If a path isn't found, it prints an empty list for that algorithm.
Generate your own explanations
Download our vscode extension
Read other generated explanations
Built by @thebuilderjr
Sponsored by beam analytics
Read our terms and privacy policy
Forked from openai-quickstart-node