Howdy Monks. The code below in Perl takes about 160 seconds to run on a test file I have. I know someone who has implemented the same algorithm (from the same pseudocode) in compiled Pascal, and it runs on the same test file in about 1 second. The two implementations produce identical results.
Now I expect interpreted Perl to be slower than compiled Pascal, but not 160x slower. So I am wondering if I have done something to make this extra slow. For example is pushing onto an array slice (as in line 21) an especially slow operation or something? I'm at a bit of a loss to understand the slowness.
Thanks........
Steve
for my $s (0..$#a) {
@stack = ();
@p = ();
@delta = @sigma = @sigmainit;
$sigma[$s] = 1;
@d = @dinit;
$d[$s] = 0;
@queue = ();
push(@queue,$s);
while(@queue) {
$v = shift(@queue);
push(@stack,$v);
for $w (0..$#a) {
if ($a[$v][$w]) {
if ($d[$w] < 0) {
push(@queue,$w);
$d[$w] = $d[$v] + 1;
}
if ($d[$w] == $d[$v]+1) {
$sigma[$w] += $sigma[$v];
push(@{ $p[$w] },$v);
}
}
}
}
while (@stack) {
$w = pop(@stack);
foreach $v (@{ $p[$w] }) {
$delta[$v] += ($sigma[$v]/$sigma[$w]) * (1 + $delta[$w]);
}
if ($w != $s) {
$b[$w] += $delta[$w];
}
}
}
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.