Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

On large graphs like 2M node road network, dijkstra can not solve shortest path problem in suitable time. We need to shortest path query execution time under 1 second and I am implementing arc flag way to make dijkstra fast. Is there anybody know about how to implement arc flags preprocessing and query. Preprocessing of arc flags has some different algorithm I need fast one.

share|improve this question
What exactly are you trying to achieve? A fast algorithm to preprocess the graph and calculate arc flags? – viaclectic Sep 15 '10 at 12:05
See related post stackoverflow.com/questions/938338/… – RED SOFT ADAIR Sep 20 '10 at 9:09

1 Answer

Have you tried A*? It's a refinement of Dijkstra's algorithm that typically performs better; moreover, you can tune it to prefer search speed over optimality if that is an option.

share|improve this answer
So A* could guarantee optimality? News to me :O – Marcus Johansson Sep 20 '10 at 9:11
1  
Sure, A* is just Dijkstra with best first. If you use an admissible heuristic optimality is guaranteed. – Rafe Sep 20 '10 at 23:38
The Arc-Flags algorithm mentioned significantly outperforms A*. See citeseerx.ist.psu.edu/viewdoc/… for an example; you're talking about several orders of magnitude better(!) – MSalters May 23 '11 at 9:52
Good grief, I was unaware of this stuff. It's astonishing how far they've come with route planning. Thanks for the reference. – Rafe May 29 '11 at 23:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.