- Unity 2018 Artificial Intelligence Cookbook(Second Edition)
- Jorge Palacios
- 47字
- 2021-07-16 18:11:38
Finding the shortest path with Dijkstra
Dijkstra's algorithm was initially designed to solve the single-source shortest path problem for a graph. Thus, the algorithm finds the lowest-cost route to everywhere from a single point. We will learn how to make use of it given two different approaches.