File tree Expand file tree Collapse file tree 1 file changed +15
-4
lines changed Expand file tree Collapse file tree 1 file changed +15
-4
lines changed Original file line number Diff line number Diff line change 11# Maze PathFinder Visualizer implemented in Python
22## How to use
3- Go to config.py and change settings.
4- 'bfs' for Breadth first search
5- 'dfs' for Depth first search
6- 'astar' for A*
3+
4+ ### Download:
75``` bash
86git clone https://github.com/ss892714028/Maze-PathFinder-Visualization-Python
7+ ```
8+ ### Install required Libraries
9+ ``` bash
910pip install -r requirements.txt
11+ ```
12+ ### Settings
13+ Go to config.py and change settings.
14+ * 'w': width of the board
15+ * 'h': height of the board
16+ * 'algo':'bfs' for Breadth first search
17+ * 'algo':'dfs' for Depth first search
18+ * 'algo':'astar' for A*
19+ ### Run the visualization
20+ ``` bash
1021python ./src/drawer.py
1122```
1223* The first two left clicks on the board initialize start and end node
You can’t perform that action at this time.
0 commit comments