neniro,
I do not believe this accomplishes what
doran was after. Instead of finding the 3 highest values of the inner hashes, you are finding the highest value in each inner hash. I think the way to go is to sort all the second level hash values into an array and pick the top 3.
my @vals = sort {$b <=> $a } map { values %{$hoh->{$_}} } keys %$hoh;
my ($one, $two, $three) = @vals[0..2];
Cheers -
L~R
Update Completely missed that tinita had an almost identical solution below. In the case of a very large HoH, you can avoid sorting and gain a bit of efficiency with the following:
my @top_3;
my $filled = 0;
VAL:
for my $val ( map { values %{$hoh->{$_}} } keys %$hoh ) {
if ( ! $filled ) {
for ( 0 .. 2 ) {
if ( ! defined $top_3[$_] ) {
$top_3[$_] = $val;
$filled = 1 if $_ == 2;
next VAL;
}
}
}
if ( $val > $top_3[0] ) {
($top_3[0], $top_3[1]) = ($val, $top_3[0]);
}
elsif ( $val > $top_3[1] ) {
($top_3[1], $top_3[2]) = ($val, $top_3[1]);
}
elsif ( $val > $top_3[2] ) {
$top_3[2] = $val;
}
}
print "$_\n" for @top_3;
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.