Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

To expand on the title, I need all simple (non-cyclical) paths between all nodes in a very large undirected graph.

The most obvious optimization I can think of is that once I have calculated all the paths between a particular pair of nodes I can just reverse them all instead of recalculating when I need to go the other way.

I was looking into transitive closures and the Floyd–Warshall algorithm, but it looks like the best I could do if I went down that route would be to find only the shortest paths between all nodes.

Any ideas? Right now I'm looking at running a DFS on every node in the graph, which seems to me to be significantly less than optimal.

share|improve this question
3  
It feels like some kind of dynamic programming is what you need here. If you find a path A->B and you've already found paths for B->C, then you filter out the ones with nodes in common and you've got your paths A->C. – Nathaniel Waisbrot Sep 2 '12 at 2:53
5  
The number of paths are exponential, so there are no efficient (polynomial) algorithm intrinsically. – RoBa Sep 2 '12 at 3:55
I don't think there is any guarantee that the paths are exponential in size. For example the ring of size N and the ring of size N+1 both have only one path. – airza Sep 2 '12 at 4:22
But still probably exponential in some fashion. – airza Sep 2 '12 at 4:23
3  
What do you mean with all simple paths? Shortest paths or really all simple paths? If it isn't only shortest, than number of paths is exponential, e.g. for graph K_n, number of paths between 2 nodes is sum i!, for 0<=i<n-1. – Ante Sep 2 '12 at 6:45

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.