vote up 0 vote down star

Say I have a list of edges each containing two nodes (to and from). What is the best way to find the edge two given nodes? Note that nodes in the edge may repeat.

Say I have edge in this format:

1 <-> 5

3 <-> 7

5 <-> 6

2<-> 6

Then query such as 1 5 will return true.

Then query such as 5 2 will return true because 5 connects 6 and 6 connects to 2.

Then query such as 1 7 will return false.

Then query such as 7 4 will return false since 4 doesnt exist, it means it is edge-less node.

flag
You have a list of edges, and you are wondering how to find the edge? Can you provide any more information? It seems like you are not explaining your question very well. – Kevin Crowell Mar 26 at 2:18
Sorry, I am still confused. Are you trying to figure out if 2 nodes make an edge? Are you trying to find the closest edge? If so, do we have nodes that make up anything besides edges? – Kevin Crowell Mar 26 at 2:26
Maybe if you define the problem mathematically it would help. – Jonathan Parker Mar 26 at 2:27
Sasha, (5 2) is NOT an edge in that list, so it's not expected that (5 2) would return TRUE if you're meant to find edges. If you want (5 2) to be TRUE, then you're searching PATHS between two nodes, not EDGES. – Rob Kennedy Mar 26 at 3:05
yes, path. I will edit that. – Sasha Mar 26 at 3:20
show 1 more comment

4 Answers

vote up 5 vote down check

It sounds to me like you are just asking if a path exists between two vertices in an undirected graph, but not necessarily what that path might be. This is the same as asking if the two vertices are in the same connected component of the graph.

If you really do only need to know if the two vertices are in the same connected component, then there is a simple and efficient algorithm using a Disjoint-set data structure.

initialize the disjoint set structure (DSS)
for each edge:
  for each vertex in edge:
    if the vertex does not exist in the DSS:
      create a new subset in the DSS containing only the vertex
  merge the subsets of the two vertices

To determine if a path exists between two vertices after processing all the edges, just check if the two vertices are in the same subset. If they are, then some path exists between them.

With an efficient implementation of the DSS, this algorithm achieves just slightly worse than linear time, and even with a simple linked-list implementation of the DSS it's O(n*log(n)). As j_random_hacker mentions, Floyd-Warshall is O(n^3) time and O(n^2) storage no matter if you are only calculating transitive closure or not, and using Dijkstra's algorithm requires an O(n*log(n)) calculation for each query.

link|flag
+1. This is the (only) correct, efficient answer for the revised version of the question. – j_random_hacker Mar 26 at 8:17
In fact, the question doesn't imply knowing disjoint verteces sets. It is excessive. You only need a transitive closure of a graph. – dragonfly Mar 26 at 8:54
vote up 0 vote down

You probably want some variation of Floyd algorithm for finding shortest paths between all graph verteces. As far as I can tell, you need only transitive closure of an undirected graph. Here is pseudocode:

for k = 1 to n
  for i = 1 to n
    for j = 1 to n
      W[i][j] = W[i][j] or (W[i][k] and W[k][j])

W before running this code should be a binary adjacency matrix for a graph (W[i][j] == 1 <-> there is an edge from i to j). After it will be a transitive closure. I.e. W[i][j] would be equal to 1 if and only if j is reachable from i.

link|flag
-1. Shortest paths are not required -- see Theran's solution. – j_random_hacker Mar 26 at 8:18
Please, care to read the whole post or at least the code snippet. If you will watch closely you'll find out that this algorithm determines only whether one vertex is reachable from another. – dragonfly Mar 26 at 8:50
Floyd uses O(n^3) time and a lot of memory. It's clearly not the best algorithm for this problem. – gs Mar 26 at 9:02
Well, I agree that it may not be the best, but it is simplest. – dragonfly Mar 26 at 9:16
@dragonfly: I see now that you are computing only transitive closure rather than shortest path, but I doubt that using "or" and "and" is much faster than using "min()" and "+" respectively. In any case the complexity is still O(n^3), whereas Theran's is near-linear (inverse Ackermann). – j_random_hacker Mar 26 at 10:17
show 2 more comments
vote up 0 vote down

Check out JGraphT library, it specializes in graph algorithms and does what you need.

link|flag
vote up 1 vote down

You are basically looking forward to test if a given pair of nodes have a path in between them or not. This is a general case of the shortest path problem. Note, however, it suffices if we can find a shortest path between the pair of nodes in question. Use whatever representation suits you (adjacency matrix, adjacency list, edge-sets, union-find ...) and go ahead with a BFS/Djikstra implementation for all pair of nodes. It is then only a matter of servicing queries. Or, you can run Djikstra/BFS on a lazy basis (and cache past computations on an incremental manner).

link|flag
-1. Shortest paths aren't needed for this -- see Theran's solution. (I realise you may have responded to an earlier version of the question, but in any case this answer is no longer correct.) – j_random_hacker Mar 26 at 8:21
@ j_random_hacker: I had mentioned union find as well if you will note my answer. I had only converted an ill-defined problem to a known one. – dirkgently Mar 26 at 8:57
@ j_random_hacker: As for the shortest path -- I'd highlighted only one possible answer among many. – dirkgently Mar 26 at 9:07
@dirkgently: You did mention it, but you mentioned it amongst a bunch of other, unnecessary approaches -- why? The problem (as it is now stated, though perhaps not before the latest edit) is already well-defined. – j_random_hacker Mar 26 at 10:10
@ j_random_hacker: I don't think they are superfluous. They are alternative ways of approaching the problem. – dirkgently Mar 26 at 10:18
show 1 more comment

Your Answer

Get an OpenID
or

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