|
|
|
Clear questions and runnable code get the best and fastest answer |
|
| PerlMonks |
Re: find all paths of length n in a graphby blokhead (Monsignor) |
| on Jan 10, 2006 at 18:29 UTC ( #522270=note: print w/ replies, xml ) | Need Help?? |
|
Adjacency matrices are really nice for this problem since they make "paths of length N" problems easy to reason about. Probably just wandering through the graph and keeping track of paths will give simpler code, but I guess I prefer using heavy machinery when it has nice abstraction properties... I also happen to really how you can use the structure of the matrix multiplication algorithm to do a lot of cute graph theory algorithms. The idea is that if you have the 0/1 adjacency matrix of a graph, and you take that matrix to the Nth power, then the (i,j) entry of the result tells how many paths of length N there are from vertex i to vertex j (here the length is measured in number of edges traversed) . The only trick is instead of just counting the paths, to keep track of all the actual paths themselves. For this you have to slightly modify the matrix multiplication algorithm... We modify the adjacency matrix so instead of being 0/1, the (i,j) entry of the matrix is a list of paths from i to j. Then in the matrix multiplication algorithm, instead of multiplying and adding entries, we instead concatenate pairs of paths together and union all of them (respectively). Here's what the code looks like: Output snippet:
blokhead
In Section
Seekers of Perl Wisdom
|
|
||||||||||||||||||||||