Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re^4: two order sort

by BrowserUk (Patriarch)
on Mar 05, 2013 at 03:49 UTC ( [id://1021739]=note: print w/replies, xml ) Need Help??


in reply to Re^3: two order sort
in thread two order sort

I forgot how to decorate for descending sort.

Just negate the field(s). Unary minus ('-') for numeric and boolean not ('~') for alpha:

# Ascending numeric and ascending alpha print for map{ unpack 'x[Na4]a*', $_ } sort map{ local $^W; pack 'Na4a*', (0+$_), substr( $_, 1), $_ } @a;; 0cjlf 0dvys 0uvmu 1akkn 1imwi 1lpys 1pjzw 2uwep 3hiyn 3jrkx 3myrn 3ozcw 3rqhx 3vkon 6excm 7axqf 7lbhj 8klfd 9ijei 9klou # Descending numeric and ascending alpha print for map{ unpack 'x[Na4]a*', $_ } sort map{ local $^W; pack 'Na4a*', -(0+$_), substr( $_, 1), $_ } @a;; 0cjlf 0dvys 0uvmu 9ijei 9klou 8klfd 7axqf 7lbhj 6excm 3hiyn 3jrkx 3myrn 3ozcw 3rqhx 3vkon 2uwep 1akkn 1imwi 1lpys 1pjzw # Ascending numeric and descending alpha print for map{ unpack 'x[Na4]a*', $_ } sort map{ local $^W; pack 'Na4a*', (0+$_), ~substr( $_, 1), $_ } @a;; 0uvmu 0dvys 0cjlf 1pjzw 1lpys 1imwi 1akkn 2uwep 3vkon 3rqhx 3ozcw 3myrn 3jrkx 3hiyn 6excm 7lbhj 7axqf 8klfd 9klou 9ijei # Decending numeric and descending alpha print for map{ unpack 'x[Na4]a*', $_ } sort map{ local $^W; pack 'Na4a*', -(0+$_), ~substr( $_, 1), $_ } @a;; 0uvmu 0dvys 0cjlf 9klou 9ijei 8klfd 7lbhj 7axqf 6excm 3vkon 3rqhx 3ozcw 3myrn 3jrkx 3hiyn 2uwep 1pjzw 1lpys 1imwi 1akkn

With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.

Replies are listed 'Best First'.
Re^5: two order sort
by AnomalousMonk (Archbishop) on Mar 05, 2013 at 07:04 UTC
    # Decending numeric and descending alpha ... pack 'Na4a*', -(0+$_), ~substr( $_, 1), $_ ... ;; 0uvmu 0dvys 0cjlf 9klou 9ijei 8klfd ... 1imwi 1akkn

    I think you fixed a  -substr( $_, 1) (- vice ~) that was there originally, but I was still puzzled by the sorting of 0 before 9 in an otherwise descending numeric sort. Looking at the bit fields in detail tells the tale: the  -(0+$_) expression should be  ~(0+$_) instead (in this particular case at least) to produce an effective descending numeric ordering from an actual ascending lexicographic sort.

    >perl -wMstrict -le "print unpack 'H*', pack 'N', -0; print unpack 'H*', pack 'N', -1; print unpack 'H*', pack 'N', -2; print unpack 'H*', pack 'N', -9; print unpack 'H*', pack 'N', -10; print ''; ;; print unpack 'H*', pack 'N', ~0; print unpack 'H*', pack 'N', ~1; print unpack 'H*', pack 'N', ~2; print unpack 'H*', pack 'N', ~9; print unpack 'H*', pack 'N', ~10; " 00000000 ffffffff fffffffe fffffff7 fffffff6 ffffffff fffffffe fffffffd fffffff6 fffffff5
    >perl -wMstrict -le "use List::Util qw(shuffle); ;; my @a = qw( 0uvmu 3rqhx 8klfd 2uwep 9klou 3jrkx 6excm 1imwi 7axqf 1lpys 0dvys 3ozcw 7lbhj 1pjzw 9ijei 3hiyn 3vkon 1akkn 0cjlf 3myrn ); ;; @a = shuffle @a; ;; print for map{ unpack 'x[Na4]a*', $_ } sort map{ local $^W; pack 'Na4a*', ~(0+$_), ~substr( $_, 1), $_ } @a " 9klou 9ijei 8klfd 7lbhj 7axqf 6excm 3vkon 3rqhx 3ozcw 3myrn 3jrkx 3hiyn 2uwep 1pjzw 1lpys 1imwi 1akkn 0uvmu 0dvys 0cjlf

    Hmmm...     This is trickier than it looks. And it looks kinda tricky. (And I don't say that my little fix is general.)

      You're right of course. You need ~ for both. (Seems I also forgot the details :)


      With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
      Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
      "Science is about questioning the status quo. Questioning authority".
      In the absence of evidence, opinion is indistinguishable from prejudice.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (7)
As of 2024-03-19 02:32 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found