Skip to content

Commit 07a30a9

Browse files
authored
Update README.md
1 parent f94f17a commit 07a30a9

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

README.md

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,23 @@
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
86
git clone https://github.com/ss892714028/Maze-PathFinder-Visualization-Python
7+
```
8+
### Install required Libraries
9+
```bash
910
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
1021
python ./src/drawer.py
1122
```
1223
* The first two left clicks on the board initialize start and end node

0 commit comments

Comments
 (0)