Is there a rgaph searching algorithm that searches through a graph (from point a to point b, at the lowest cost possible - this is on a weighted graph) that remembers the path that it takes (e.g. not Dijkstra's as it does not remember the path but simply gives you the shortest distance)?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Have a look at this one: http://www.uweschmidt.org/projects/dijkstravis

You have to calculate the path step-wise

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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