vote up 2 vote down star

I have a list of interconnected edges (E), how to find the shortest path connecting from one vertex to another?

I am thinking about using lowest common ancestors, but the edges don't have a clearly defined root, so I don't think the solution works.

Shortest path is defined by the minimum number of vertexes treversed.

Note: There could be a multi-path connecting two vertices, so obviously breadth first search won't work

flag

49% accept rate
Note that lowest common ancestors requires a tree, which implies that there's only one path between any two nodes. Finding the shortest path is trivial in that case. – outis Nov 2 at 5:39
2  
I don't see how having multiple possible paths defeats using BFS. BFS finds the shortest path from a single node in a graph, provided all edges are unweighted/have same weight. The graph does not have to be a tree for BFS to work. – MAK Nov 2 at 21:04

5 Answers

vote up 6 vote down check

I'm not sure if you need a path between every pair of nodes or between two particular nodes. Since someone has already given an answer addressing the former, I will address the latter.

If you don't have any prior knowledge about the graph (if you do, you can use a heuristic-based search such as A*) then you should use a breadth-first search.

link|flag
bfs will tell me a path between two nodes; but it can't tell me which path is the shortest one. – Ngu Soon Hui Nov 2 at 6:26
Oops, BFS gives you the shortest path for unweighted edges. – Artelius Nov 2 at 6:46
Let me think about it; if you were right I would take away your downvote... – Ngu Soon Hui Nov 2 at 7:05
Downvote taken away – Ngu Soon Hui Nov 3 at 0:55
vote up 1 vote down
Shortest path is defined by the minimum number of vertexes treversed

it is same as minimum number of edges plus one.

you can use standard breadth first search and it will work fine. If you have more than one path connecting two vertices just save one of them it will not affect anything, because weight of every edge is 1.

link|flag
vote up 0 vote down

Additional 2 cents. Take a look at networkx. There are interesting algos already implemented for what you need, and you can choose the best suited.

link|flag
vote up 2 vote down

The Floyd-Warshall algorithm would be a possible solution to your problem, but there are also other solutions to solve the all-pairs shortest path problem.

link|flag
vote up 6 vote down

Dijkstra's algorithm will do this for you.

link|flag
1  
Only needed if edges are weighted. – John Kugelman Nov 2 at 5:43
I forgot about that... I assumed that his map of edges were weights. – steven Nov 2 at 6:35
4  
if not weighted, simply assume all edges weigh 1. still a good solution. – seanmonstar Nov 2 at 6:36

Your Answer

Get an OpenID
or

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