Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re^4: Rewrite Program Using Arrays

by ikegami (Patriarch)
on Mar 27, 2012 at 20:54 UTC ( [id://962025]=note: print w/replies, xml ) Need Help??


in reply to Re^3: Rewrite Program Using Arrays
in thread Rewrite Program Using Arrays

Get rid of a scope, use preinc instead of postinc.

sub ikegami { my %wordcount; ++$wordcount{$_} for split ' ', $line; }
                  Rate loop with vars      with map loop sans vars       ikegami
loop with vars  8324/s             --          -19%           -20%          -22%
with map       10241/s            23%            --            -1%           -4%
loop sans vars 10370/s            25%            1%             --           -3%
ikegami        10666/s            28%            4%             3%            --

(Post-increment in void context is optimised to pre-increment, but it's not in void context in "with map".)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://962025]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (4)
As of 2024-03-28 18:18 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found