File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -25,15 +25,15 @@ All contributions are welcome. :)
2525* DFS
2626* ASTAR (A* )
2727
28- ### Breadth First Search (unweighted Dijkstra)
28+ #### Breadth First Search (unweighted Dijkstra)
2929Breadth First Search is unweighted and guarantee a optimal path.
3030![ BFS] ( https://github.com/ss892714028/Maze-PathFinder-Visualization-Python/blob/master/gifs/bfs.gif )
3131
32- ### Depth First Search
32+ #### Depth First Search
3333Depth First Search is unweighted and does not guarantee a optimal path.
3434![ DFS] ( https://github.com/ss892714028/Maze-PathFinder-Visualization-Python/blob/master/gifs/dfs-nonoptimal.gif )
3535
36- ### Astar (A* )
36+ #### Astar (A* )
3737A* is weighted and guarantee a optimal path.
3838![ A* easy] ( https://github.com/ss892714028/Maze-PathFinder-Visualization-Python/blob/master/gifs/a-star_ez.gif )
3939![ A* ] ( https://github.com/ss892714028/Maze-PathFinder-Visualization-Python/blob/master/gifs/a-star.gif )
You can’t perform that action at this time.
0 commit comments