vote up 2 vote down star

In graph theory, what is the distinction between minimal distance (which Dijkstra's algorithm finds), and minimal path (which I'm not sure what it is)?

flag

66% accept rate

5 Answers

vote up 6 vote down check

Minimal path is the set of edges which when traversed cover the least amount of distance between two edges. Minimal distance is the sum of the distance between the edges of a minimal path.

link|flag
vote up 2 vote down

distance is scalar; a number. path is a list of vertex/edge pairs?

link|flag
vote up 1 vote down

Minimal distance = least sum of edge weights. Minimal path = least edges.

Ie// It's a shorter path to fly from Vancouver to Toronto and then to Winipeg even though it's a shorter distance to fly from Vancouver to Calgary to Regina and then To Winipeg.

Edit: Flip that around I think.

link|flag
[[citation wanted]] – BCS Nov 13 '08 at 21:28
vote up -2 vote down

Minimal distance is the same as minimal path.

link|flag
vote up 0 vote down

I'm not 100% sure, but it sounds like the minimal path would be the list of vertices visited when traversing the minimal distance path from vertex A to vertex B.

link|flag

Your Answer

Get an OpenID
or

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