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

https://github.com/dbrizov/Unity-PathFindingAlgorithms

BFS, Greedy Best-First Search, Dijkstra and A* path finding algorithms
https://github.com/dbrizov/Unity-PathFindingAlgorithms

a-star bfs dijkstra greedy-bfs pathfinding unity3d

Last synced: 6 months ago
JSON representation

BFS, Greedy Best-First Search, Dijkstra and A* path finding algorithms

Awesome Lists containing this project

README

          

# Path Finding Algorithms
BFS, Greedy Best-First Search, Dijkstra and A* path finding algorithms visualized in Unity

### BFS (Breadth-First Search)
![bfs](https://github.com/dbrizov/Unity-PathFindingAlgorithms/blob/master/Assets/Gifs/bfs.gif)

### Greedy BFS (Greedy Best-First Search)
![greedy_bfs](https://github.com/dbrizov/Unity-PathFindingAlgorithms/blob/master/Assets/Gifs/greedy_bfs.gif)

### Dijkstra
![dijkstra](https://github.com/dbrizov/Unity-PathFindingAlgorithms/blob/master/Assets/Gifs/dijkstra.gif)

### A* (Euclidean Distance Heuristic)
![astar](https://github.com/dbrizov/Unity-PathFindingAlgorithms/blob/master/Assets/Gifs/astar.gif)

### A* (With Aggressive Heuristic)
![astar_aggressive](https://github.com/dbrizov/Unity-PathFindingAlgorithms/blob/master/Assets/Gifs/astar_aggressive.gif)