An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

        

# search-algorithms-implementations
Simple implementation of Breadth First Search and A* with heuristic

TODO:
- [ ] 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)