- Unity 2018 Artificial Intelligence Cookbook(Second Edition)
- Jorge Palacios
- 59字
- 2021-07-16 18:11:38
Finding the best-promising path with A*
The A* algorithm is probably the most widely-used technique for path finding given its implementation simplicity, efficiency, and because it has room for optimization. It's no coincidence that there are several algorithms based on it. At the same time, A* shares several roots with Dijkstra's algorithm, so you'll find similarities in their implementations.