Dynamic Dijkstra

Posted by Dani on Game Development See other posts from Game Development or by Dani
Published on 2010-07-27T04:57:53Z Indexed on 2011/03/09 16:19 UTC
Read the original article Hit count: 322

Filed under:

I need dynamic dijkstra algorithm that can update itself when edge's cost is changed without a full recalculation. Full recalculation is not an option.
I've tryed to "brew" my own implemantion with no success. I've also tryed to find on the Internet but found nothing.
A link to an article explaining the algorithm or even it's name will be good.

Edit:
Thanks everyone for answering. I managed to make algorithm of my own that runs in O(V+E) time, if anyone wishes to know the algorithm just say so and I will post it.

© Game Development or respective owner

Related posts about algorithm