954,523 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

effecient way to sort hash by values?can we do it without sort?

I have a hash %d,i want the top five valued keys.I did the following wich worked but is there anything more effecient?

@p=(reverse sort{$d{$a}<=>$d{$b}} keys%d)[0..4];

ssdeep
Light Poster
27 posts since Oct 2009
Reputation Points: 19
Solved Threads: 0
 

We can take the greatest five from a hash without sorting. I don't know if that makes it more efficient. For example, the following prints the five colors having the longest wavelengths.

#!/usr/bin/perl
use strict;
use warnings;

my %d = (violet => 400,
         red    => 650,
         indigo => 445,
         orange => 590,
         blue   => 475,
         yellow => 570,
         green  => 510);

my @p;

foreach my $r (0 .. 4){
    foreach my $k (keys %d){
        if (!defined$p[$r]
            or $d{$k} > $d{$p[$r]}){
            $p[$r] = $k;
        }
    }
    delete $d{$p[$r]};#After saving one of top 5, delete it from hash
}

print join "\n", @p;
d5e5
Practically a Posting Shark
810 posts since Sep 2009
Reputation Points: 159
Solved Threads: 159
 

Thanks for the tip,haven't thought of that.Is there more effecient performance wise?

ssdeep
Light Poster
27 posts since Oct 2009
Reputation Points: 19
Solved Threads: 0
 
use Sort::Key::Top qw(rnkeytop);
my @top = rnkeytop { $d{$_} } 5 => keys %d;


See also Selection algorithm

sfandino
Newbie Poster
1 post since Dec 2011
Reputation Points: 10
Solved Threads: 1
 

sfandino thanks but i think d5e5's suggestion is more effecient.

ssdeep
Light Poster
27 posts since Oct 2009
Reputation Points: 19
Solved Threads: 0
 

This question has already been solved

Post: Markdown Syntax: Formatting Help
You