Hello
haukex,
I have not seen others but here are two attempts. Anyway i bet on tybalt89's regex ;)
Discipulus => sub{
my @list = @input;
my @neg = sort {$a<=>$b} grep { $_ < 0 } @list;
my @pos = sort {$a<=>$b} grep { $_ >= 0} @list;
@list = (@pos,@neg);
Compare(\@list,\@output) or die "@list" if DO_CHECK;
},
Discipulus2 => sub{
my @list = sort {$a<=>$b} @input;
push @list, shift @list until $list[0] >= 0;
Compare(\@list,\@output) or die "@list" if DO_CHECK;
},
UPDATE what I first imagined was a sort block.. now after the right dose of spaghetti..
Discipulus3 => sub{
my @list = sort {
(( $a >= 0 and $b >= 0)
or
($a < 0 and $b < 0 )) ?
$a<=>$b :
$b<=>$a
} @input;
Compare(\@list,\@output) or die "@list" if DO_CHECK;
},
#OUTPUT
Rate Discipulus Discipulus3 Discipulus2
Discipulus 46252/s -- -14% -46%
Discipulus3 53805/s 16% -- -38%
Discipulus2 86380/s 87% 61% --
L*
There are no rules, there are no thumbs..
Reinvent the wheel, then learn The Wheel; may be one day you reinvent one of THE WHEELS.
In reply to Re: Fastest way to sort a list of integers into 0,1,2,3,-3,-2,-1
by Discipulus
in thread Fastest way to sort a list of integers into 0,1,2,3,-3,-2,-1
by haukex
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.