Below is the code. I tried different lengths of strings (upper bound in 1..10000) and number of iterations (first argument to timethese).
#!/usr/bin/perl
use strict;
use warnings;
use Benchmark qw/cmpthese timethese/;
my $y = join "", 1..10000;
my %tr;
@tr{map chr, 0..255} = map chr, 1..255,0;
my $tr = eval 'sub {$_[0] =~ tr/\x00-\xff/\x01-\xff\x00/r}';
my $trans = sub
{
my $x = $y;
$x =~ tr/\x00-\xff/\x01-\xff\x00/r;
};
my $subst = sub
{
my $x = $y;
$x =~ s/(.)/$tr{$1}/egr;
};
my $eval = sub
{
my $x = $y;
eval '$x =~ tr/\x00-\xff/\x01-\xff\x00/r';
};
my $preceval = sub
{
my $x = $y;
&$tr($x);
};
my $z = &$trans;
$z eq &$subst or die;
$z eq &$eval or die;
$z eq &$preceval or die;
length($y) == length($z) or die;
printf "length: %s\n", length($y);
timethese(0, {
trans => $trans,
subst => $subst,
eval => $eval,
preceval => $preceval,
});
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.