https://github.com/alexandengstrom/pathfinding-visualizer
A Pathfinding Visualizer built with React that visualizes algorithms such as BFS, DFS, and Dijkstra's.
https://github.com/alexandengstrom/pathfinding-visualizer
algorithm bfs dfs dijkstras visualizer
Last synced: 3 months ago
JSON representation
A Pathfinding Visualizer built with React that visualizes algorithms such as BFS, DFS, and Dijkstra's.
- Host: GitHub
- URL: https://github.com/alexandengstrom/pathfinding-visualizer
- Owner: alexandengstrom
- Created: 2023-10-28T19:15:39.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-30T09:48:41.000Z (about 2 years ago)
- Last Synced: 2025-06-02T05:50:44.822Z (6 months ago)
- Topics: algorithm, bfs, dfs, dijkstras, visualizer
- Language: JavaScript
- Homepage: https://alexandengstrom.github.io/pathfinding-visualizer/
- Size: 331 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pathfinding Visualizer
The Pathfinding Visualizer is a web-based tool developed in React. Its primary function is to provide visual representations of various pathfinding algorithms, allowing users to observe their operations in real-time.
Try the tool here:
https://alexandengstrom.github.io/pathfinding-visualizer/
## Features:
1. **Algorithms:**
- Breadth-First Search (BFS)
- Depth-First Search (DFS)
- Dijkstra's Algorithm
2. **Maze and Terrain Generation:**
- Random maze generation
- Weighted terrains for use with Dijkstra's Algorithm
3. **Interactive Canvas:**
- Paint your own custom mazes and terrains to test the algorithms on.