Good point Here is my code
use strict; use warnings; use Benchmark; use List::Util qw /shuffle/; use feature 'say'; my $n = 10**7; my @sorted = 1..$n; my @random = shuffle @sorted; my $t0 = Benchmark->new; say sum_this(\@sorted); my $t1 = Benchmark->new; my $td1 = timediff($t1, $t0); say "sorted:",timestr($td1); my $t2 = Benchmark->new; say sum_this(\@random); my $t3 = Benchmark->new; my $td2 = timediff($t3, $t2); say "random:",timestr($td2); sub sum_this { my ($arr) = @_; my $sum; foreach (my $i=0;$i<=$#$arr;$i++) { my $x = $arr->[$i]; if($x>$n/2) { $sum+= $x; } } return $sum; }
The output is
37500002500000
sorted: 6 wallclock secs ( 5.61 usr +  0.00 sys =  5.61 CPU)
37500002500000
random: 6 wallclock secs ( 5.81 usr +  0.00 sys =  5.81 CPU)
There is a difference but not as dramatic as in java or c++ (from the stack overflow post) What is the correct interpretation of the results?

In reply to Re^2: does perl have branch prediction by david2008
in thread does perl have branch prediction by david2008

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.