Skip to content

Commit 0410591

Browse files
authoredJun 23, 2019
Update README.md
1 parent 36b1669 commit 0410591

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed
 

‎README.md

+16-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,17 @@
11
# Path Finding Algorithms
2-
BFS, Dijkstra and A* path finding algorithms visualized in Unity
2+
BFS, Greedy Best-First Search, Dijkstra and A* path finding algorithms visualized in Unity
3+
4+
### BFS (Breadth-First Search)
5+
![bfs](https://github.com/dbrizov/Unity-PathFindingAlgorithms/blob/master/Assets/Gifs/bfs.gif)
6+
7+
### Greedy BFS (Greedy Best-First Search)
8+
![greedy_bfs](https://github.com/dbrizov/Unity-PathFindingAlgorithms/blob/master/Assets/Gifs/greedy_bfs.gif)
9+
10+
### Dijkstra
11+
![dijkstra](https://github.com/dbrizov/Unity-PathFindingAlgorithms/blob/master/Assets/Gifs/dijkstra.gif)
12+
13+
### A* (euclidean distance heuristic)
14+
![astar](https://github.com/dbrizov/Unity-PathFindingAlgorithms/blob/master/Assets/Gifs/astar.gif)
15+
16+
### A* (with aggressive heuristic)
17+
![astar_aggressive](https://github.com/dbrizov/Unity-PathFindingAlgorithms/blob/master/Assets/Gifs/astar_aggressive.gif)

0 commit comments

Comments
 (0)
Please sign in to comment.