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 1
1
# Maze PathFinder Visualizer implemented in Python
2
2
## 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:
7
5
``` bash
8
6
git clone https://github.com/ss892714028/Maze-PathFinder-Visualization-Python
7
+ ```
8
+ ### Install required Libraries
9
+ ``` bash
9
10
pip 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
10
21
python ./src/drawer.py
11
22
```
12
23
* 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