https://github.com/ingogbe/search-algorithms-implementations
Simple implementation of Breadth First Search and A* with heuristic
https://github.com/ingogbe/search-algorithms-implementations
Last synced: 3 months ago
JSON representation
Simple implementation of Breadth First Search and A* with heuristic
- Host: GitHub
- URL: https://github.com/ingogbe/search-algorithms-implementations
- Owner: ingogbe
- Created: 2017-05-26T17:57:29.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-24T15:29:06.000Z (about 7 years ago)
- Last Synced: 2025-01-27T11:23:19.498Z (4 months ago)
- Language: Java
- Homepage:
- Size: 32.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# search-algorithms-implementations
Simple implementation of Breadth First Search and A* with heuristicTODO:
- [ ] Melhorar uso de memória no A* (não salvar todos os caminhos completos na memória)
- [ ] Imprimir o caminho completo ao final do algortimo no Busca em Largura
- [ ] Padronizar texto de saída para os algoritmos (imprimires nó atual, fronteiras, etc)