Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
Definitely less compact, arguably more readable — although I tend to read the compact stuff more easily.

But which is faster? I know I was expecting a speedup from using each instead of keying each by hand. But does the sub slow it down?

use strict; use Benchmark qw(cmpthese); my %bdry; for my $i ( 1 .. 35 ) { for my $j ( 1 .. 35 ) { $bdry{$i}{$j} = 1+ int rand 50; } } cmpthese(1_000, { jetsway=>\&jetsway, mwahsway=>\&mwahsway }); sub jetsway { my @keys = sort { $bdry{ $b->[0] }{ $b->[1] } <=> $bdry{ $a->[0] }{ $a->[ +1] } } map { my $k = $_; map { [$k, $_] } keys %{ $bdry{$k} } } keys %bdry; return @keys; } sub mwahsway { my @flipped_hash = reverse sort {$a->[0] <=> $b->[0] } flippout (% +bdry); return @flipped_hash; } sub flippout { my %h = @_; my @f; while( my ($k,$v) = each %h ) { while( my ($vk,$vv) = each %$v) { push @f, [$vv, $k, $vk] } } return @f }

          Rate  jetsway mwahsway
jetsway  103/s       --     -47%
mwahsway 195/s      89%       --

-Paul


In reply to Re^2: sorting HoH according to value by jettero
in thread sorting HoH according to value by sovixi

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (8)
As of 2024-04-25 11:32 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found