https://github.com/d-brox/graphsearch
Trabalho de busca em grafos
https://github.com/d-brox/graphsearch
Last synced: 3 months ago
JSON representation
Trabalho de busca em grafos
- Host: GitHub
- URL: https://github.com/d-brox/graphsearch
- Owner: D-Brox
- Created: 2022-11-01T14:43:25.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-11-01T14:49:05.000Z (over 3 years ago)
- Last Synced: 2025-03-13T01:33:50.659Z (over 1 year ago)
- Language: Python
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Path Finder
## Dependências
Alguns pacotes de python precisam estar instalados:
```console
pip3 install Pillow numpy tqdm
```
## Como executar:
```console
python3 pathfinder.py filepath method x_start y_start x_end y_end
```
Exemplo:
```console
python3 pathfinder.py mapas/mapa_test.map Astar 1 1 3 1
```
Os métodos aceitos são `Astar`, `BFS`, `Greedy`, `IDS` e `UCS`.