1

I wonder if we can solve the shortest-path with a space filling curve or is there a better solution? How good would be the approximation compared to an exact solver? The graph doesn't need to satisfy the triangle inequality.

Micromega
  • 12,486
  • 7
  • 35
  • 72

1 Answers1

0

A* with good heuristic function is generally the best solution (in terms of speed and finding shortest path).

I'm not sure what do you want to achieve with space-filling curve. I suppose it could give you interesting path in areas where costs are equal.

Kornel
  • 97,764
  • 37
  • 219
  • 309
  • Note that the heuristic must be an admissible heuristic in order to get the actual shortest-path. This is not always easy to do. – Maxime Chéramy Jun 14 '13 at 10:26