You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An interactive grid-based pathfinding visualizer built with Python and Matplotlib. Visualize how different search algorithms explore a grid and find the shortest path from start to target, with support for custom wall placement and step-by-step animation.
Algorithms Implemented
Algorithm
Description
BFS (Breadth-First Search)
Explores all neighbors at the current depth before moving deeper. Guarantees the shortest path in unweighted graphs.
DFS (Depth-First Search)
Explores as far as possible along each branch before backtracking. Does not guarantee the shortest path.