New Algorithm

Change EXTRACT-MIN in Dijkstra's to pick out the node u with the smallest value of d[u]+h(u). [Note, at the smallest value of d[u]+h(u), $f(u) =\delta(s,u)+h(u) = d[u]+h(u)$ because of monotonicity.]

Idea:

This is called A*.


next up previous
Next: Basic Concepts Up: A* Previous: Observations