Optimisation Algorithms Flashcards
1
Q
Heuristic Definition (A* Algorithm)
A
A guess that estimates the distance from each node to the destination node
2
Q
Similarities Between Dijkstra’s Shortest Path and A*
A
- Both are path finding algorithms
- Both always find the shortest route between two nodes
3
Q
Differences Between Dijkstra’s Shortest Path and A*
A
- A* uses heuristics, Dijkstra does not
- A* is usually more efficient, Dijkstra is usually slower