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)?
In graph theory, what is the distinction between minimal distance (which Dijkstra’s algorithm finds),
Share
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.