As you say, the slice method is faster again. I will be using it from now on. Thanks.
use Benchmark;
@a= (0..100,0..100);
$mine = <<'CODE';
my %hash;
@hash{$_}++ for @a;
@a = keys %hash;
CODE
$yours1 = <<'CODE';
my %hash;
@hash{@a} = ();
@a = keys %hash;
CODE
$yours2 = <<'CODE';
my %hash;
@hash{@a} = @a;
@a = values %hash;
CODE
$his = <<'CODE';
my %hash;
map { $hash{$_}=1 } @a;
@a = keys %hash;
CODE
timethese ( 10000, { 'mine' => $mine,
'yours1' => $yours1,
'yours2' => $yours2,
'his' => $his
} );
__END__
C:\>perl test.pl
Benchmark: timing 10000 iterations of his, mine, yours1, yours2...
his: 17 wallclock secs (17.03 usr + 0.00 sys = 17.03 CPU) @ 58
+7.20/s (n=10000)
mine: 15 wallclock secs (15.05 usr + 0.00 sys = 15.05 CPU) @ 66
+4.45/s (n=10000)
yours1: 12 wallclock secs (11.76 usr + 0.00 sys = 11.76 CPU) @ 85
+0.34/s (n=10000)
yours2: 15 wallclock secs (14.78 usr + 0.00 sys = 14.78 CPU) @ 67
+6.59/s (n=10000)
C:\>
cheers
tachyon
s&&rsenoyhcatreve&&&s&n.+t&"$'$`$\"$\&"&ee&&y&srve&&d&&print
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
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, 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, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
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.
|
|