Mine is also way slower than I expected, here just to be complete :)

cmpthese (-2, { sortfirst => sub { my @list = -5..5; @list = sort { $a <=> $b } @list; @list = ((grep { $_ >= 0 } @list), (grep { $_ < 0 } @list)); DO_CHECK and (Compare (\@list, [0..5, -5..-1]) or die "@list") +; }, grepfirst => sub { my @list = -5..5; my @pos = grep { $_ >= 0 } @list; my @neg = grep { $_ < 0 } @list; @list = ((sort { $a <=> $b } @pos), (sort { $a <=> $b } @neg)) +; DO_CHECK and (Compare (\@list, [0..5, -5..-1]) or die "@list") +; }, packunpck => sub { my @list = map { unpack "l>", $_ } sort map { pack "l>", $_ } +-5..5; DO_CHECK and (Compare (\@list, [0..5, -5..-1]) or die "@list") +; }, pryrt => sub { my @list = -5..5; sub sgn { $_[0] < 0 ? -1 : 1 } @list = sort { (sgn ($b) <=> sgn ($a)) || ($a <=> $b) } @list; DO_CHECK and (Compare (\@list, [0..5, -5..-1]) or die "@list") +; }, choroba => sub { my @list = -5..5; @list = sort { ((-1, 0, 1)[$a <=> 0] <=> (-1, 0, 1)[$b <=> 0]) || ($a <=> + $b) } @list; DO_CHECK and (Compare (\@list, [0..5, -5..-1]) or die "@list") +; }, });
Rate pryrt packunpck choroba grepfirst sortfirst pryrt 123672/s -- -35% -39% -66% -73% packunpck 190037/s 54% -- -7% -48% -59% choroba 204244/s 65% 7% -- -44% -56% grepfirst 367991/s 198% 94% 80% -- -20% sortfirst 460545/s 272% 142% 125% 25% --

Enjoy, Have FUN! H.Merijn

In reply to Re: Fastest way to sort a list of integers into 0,1,2,3,-3,-2,-1 by Tux
in thread Fastest way to sort a list of integers into 0,1,2,3,-3,-2,-1 by haukex

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



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.