vote up 10 vote down star
5

I have a large, connected, sparse graph in adjacency-list form. I would like to find two vertices that are as far apart as possible, that is, the diameter of the graph and two vertices achieving it.

I am interested in this problem in both the undirected and directed cases, for different applications. In the directed case, I of course care about directed distance (the shortest directed path from one vertex to another), and I have a strongly-connected graph.

In particular, I was wondering if there was a better approach than computing all-pairs shortest paths?

Edit: By "as far apart as possible", I of course mean the "longest shortest path" -- that is, the maximum over all pairs of vertices of the shortest distance from one to the other.

flag

1  
Good question. You even did some reading before asking :) – jrockway Jul 27 at 21:02
1  
It better be an acyclic graph. – dlamblin Jul 27 at 23:02
@dlamblin: I have added a clarification addressing your point. My graph is not acyclic, but this does not matter. I am looking for the "longest shortest path". – A. Rex Jul 27 at 23:50

3 Answers

vote up 3 vote down

Edit I'm undeleting again, simply so I can continue commenting. I have some comments on Johnson's Algorithm below this answer. - Aaron

My original comment : I too am curious about this problem, but don't have an answer. It seems related to the Minimum Spanning Tree, the subgraph connecting all vertices but having fewest (or lowest weight) edges. That is an old problem with a number of algorithms; some of which seem quite easy to implement.

I had initially hoped that the diameter would be obvious once the MST had been found, but I'm losing hope now :-( Perhaps the MST can be used to place a reasonable upper bound on the diameter, which you can use to speed up your search for the actual diameter?

link|flag
Finding the MST looks like a very good first step, but I we can NOT assume that the diameter path passes through the MST. I can think of a simple example that shows that. Unfortunately, I can't draw it here. – jpbochi Jul 27 at 22:53
That is true. But the diameter of the MST cannot be shorter than the diameter of the graph as a whole. Therefore it places an upper bound, but not a lower bound, on the diameter of the graph. However, I must admit that such an upper bound may not be very useful. – Aaron McDaid Jul 27 at 23:20
By the way, I'm new to stack overflow and I probably should have put my original comment in as a 'comment', not as an answer. I wasn't intending to claim to have an answer, I just wanted to join the discussion. I see two users ( dlamblin and jrockway ) have managed to post comments, not answers, directly to the question; but I can't see such an option. Apologies ... – Aaron McDaid Jul 27 at 23:29
Thanks for that clarification A.Rex. I'll delete my answer now then, I hope that'll increase exposure of the question again. I'm guessing it'll also delete some of these comments though :-( – Aaron McDaid Jul 27 at 23:56
@A. Rex: Do you have weights in your graph, and are any of them negative? Johnson's algorithm (according to Wikipedia) just transforms the data to remove the negative weights, then perform Dijkstra's algorithm on each node in turn. So assuming you have non-negative (and perhaps all equal) weights, it appears you have to do something like a brute force involving Dijkstra's algorithm anyway. – Aaron McDaid Jul 28 at 16:19
show 1 more comment
vote up 1 vote down

Well, I've put a little bit of thought on the problem, and a bit of googling, and I'm sorry, but I can't find any algorithm that doesn't seem to be "just find all pairs shortest path".

However, if you assume that Floyd-Warshall is the only algorithm for computing such a thing (Big-Theta of |V|^3), then I have a bit of good news for you: Johnson's Algorithm for Sparse Graphs (thank you, trusty CLRS!) computes all pairs shortest paths in (Big-Oh (|V|^2 * lgV + VE)), which should be asymptotically faster for sparse graphs.

Wikipedia says it works for directed (not sure about undirected, but at least I can't think of a reason why not), here's the link.

Is there anything else about the graph that may be useful? If it can be mapped easily onto a 2D plane (so, its planar and the edge weights obey the triangle inequality [it may need to satisfy a stricter requirement, I'm not sure]) you may be able to break out some geometric algorithms (convex-hull can run in nlogn, and finding the farthest pair of points is easy from there).

Hope this helps! - Agor

Edit: I hope the link works now. If not, just google it. :)

link|flag
Thanks for the comments. I was aware of Johnson's algorithm, but I suppose it's a good idea to have it here for posterity anyway. My graphs cannot be naturally embedded in low-dimensional spaces in any way. – A. Rex Jul 28 at 0:03
vote up 1 vote down

I don't know of a better method for computing diameter other than all shortest paths, but Mathematica uses the following approximation for PseudoDiameter:

  • A graph geodesic is the shortest path between two vertices of a graph. The graph diameter is the longest possible length of all graph geodesics of the graph. PseudoDiameter finds an approximate graph diameter. It works by starting from a vertex u, and finds a vertex v that is farthest away from u. This process is repeated by treating v as the new starting vertex, and ends when the graph distance no longer increases. A vertex from the last level set that has the smallest degree is chosen as the final starting vertex u, and a traversal is done to see if the graph distance can be increased. This graph distance is taken to be the pseudo-diameter.

http://reference.wolfram.com/mathematica/GraphUtilities/ref/PseudoDiameter.html

link|flag
Thanks! That's definitely a plausible heuristic. – A. Rex Jul 28 at 15:55

Your Answer

Get an OpenID
or

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