Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: Some advice regaring sorting and hashes

by targetsmart (Curate)
on Jun 08, 2009 at 11:55 UTC ( [id://769473]=note: print w/replies, xml ) Need Help??


in reply to Some advice regaring sorting and hashes

you can use hash of arrays for that
if your data is like this
the inner array is [count, alpha, omega] respectively.
$VAR1 = { 'a' => [ 0, 1, 2 ], 'b' => [ -1, 3, 4 ], 'c' => [ 4, 5, 6 ] };
you can use something like below if you want to sort numerically by count
sort { $hash{$a}[0] <=> $hash{$b}[0]} keys %hash

Vivek
-- In accordance with the prarabdha of each, the One whose function it is to ordain makes each to act. What will not happen will never happen, whatever effort one may put forth. And what will happen will not fail to happen, however much one may seek to prevent it. This is certain. The part of wisdom therefore is to stay quiet.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (7)
As of 2024-04-18 02:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found