Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

Update: Added undef's to the list to imitate the OP's request regarding undef's. After sorting, move any undef's from the start of the list to the end.

The following is a fun exercise if wanting to simulate work inside the foo function.

Thank you, Randal L. Schwartz for the Schwartzian transform technique.

use strict; use warnings; # http://www.perlmonks.org/?node_id=1192544 use List::Util 'shuffle'; use Time::HiRes 'time'; sub foo { sleep 0; $_[0] } srand 0; my @unsorted = shuffle ( 'aaaa'..'zzzz', (undef) x 7 ); printf "Number of elements to sort : %d\n", scalar @unsorted; { no warnings 'uninitialized'; my $start = time; my @sorted = sort { foo($a) cmp foo($b) } @unsorted; # move any undef's from the start of the list to the end my $i = 0; $i++ until ( defined $sorted[$i] ); push @sorted, splice(@sorted, 0, $i) if $i; printf "Without Schwartzian transform : %6.3f seconds\n", time - $start; } { no warnings 'uninitialized'; my $start = time; my @sorted = map { $_->[0] } sort { $a->[1] cmp $b->[1] } map { [ $_, foo($_) ] } @unsorted; # move any undef's from the start of the list to the end my $i = 0; $i++ until ( defined $sorted[$i] ); push @sorted, splice(@sorted, 0, $i) if $i; printf "With ++ Schwartzian transform : %6.3f seconds\n", time - $start; } __END__ Number of elements to sort : 456983 Without Schwartzian transform : 24.939 seconds With ++ Schwartzian transform : 2.832 seconds

Perl is fun. I'm always learning and had no idea the speed gain possible with the Schwartzian transform until now. I also tried without sleep 0 inside foo to better understand the overhead imposed by method calling. The Schwartzian transform is still faster. Wow!

sub foo { $_[0] } Number of elements to sort : 456983 Without Schwartzian transform : 4.680 seconds With ++ Schwartzian transform : 2.053 seconds

Regards, Mario


In reply to Re^4: Sort undef by marioroy
in thread Sort undef by Anonymous Monk

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 lurking in the Monastery: (2)
As of 2024-04-20 06:26 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found