Conjuring on an adjacency matrix (thanks to Math::MatrixReal), this snippet finds every couple of nodes (i, j) such that there's a path from i to j. The matrix $sum is called transitive closure of the graph $graph.
#!/usr/bin/perl # Transitive closure of a directed graph use strict; use Math::MatrixReal; my $n = 4; # Matrix' size my $graph = Math::MatrixReal->new_from_string( <<'MATRIX' ); [ 0 1 0 1 ] [ 0 0 1 0 ] [ 0 0 0 0 ] [ 1 1 0 0 ] MATRIX my $sum = $graph->shadow(); my $p = $graph->shadow(); $p->one(); # "One Ring to rule them all, One Ring to find them..." # Sum of A^i, for i = 0..n-1 (A is the adjacency matrix of our graph) foreach (0 .. ($n - 1)) { $p = $p * $graph; $sum = $sum + $p; } # Finished. # Now we print every couple (i, j) such that # there's a path from i to j. foreach my $i (1..$n) { foreach my $j (1..$n) { print "There's a path from $i to $j.\n" if $sum->element( $i, +$j ); } }

In reply to Transitive closure by larsen

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.