Please enable JavaScript.
Coggle requires JavaScript to display documents.
Pathfinding Algorithms - Coggle Diagram
Pathfinding Algorithms
-
Search Strategies
-
-
-
A* Search:
Combines cost to reach a node g(n) and heuristic estimate h(n), often optimal and efficient (f(n) = g(n) + h(n)).
Admissible Heuristic:
Never overestimates the cost to reach the goal, guarantees optimality.
-
Heuristics
Manhattan Distance: Sum of horizontal and vertical distances, useful for grid worlds.
-
Dominance: One heuristic dominates another if it consistently provides closer estimates to the true cost.
-