返回具有最大值的所有哈希键/值对

发布于 2024-11-06 07:51:37 字数 340 浏览 0 评论 0原文

我有一个散列(在 Perl 中),其中值都是数字。我需要创建另一个哈希,其中包含第一个哈希中的所有键/值对,其中该值是所有值中的最大值。

例如,假设

my %hash = (
    key1 => 2,
    key2 => 6,
    key3 => 6,
);

我想创建一个新的哈希,其中包含:

%hash_max = (
    key2 => 6,
    key3 => 6,
);

我确信有很多方法可以做到这一点,但我正在寻找一个优雅的解决方案(以及学习的机会!)。

I have a hash (in Perl) where the values are all numbers. I need to create another hash that contains all key/value pairs from the first hash where the value is the maximum of all values.

For example, given

my %hash = (
    key1 => 2,
    key2 => 6,
    key3 => 6,
);

I would like to create a new hash containing:

%hash_max = (
    key2 => 6,
    key3 => 6,
);

I'm sure there are many ways to do this, but am looking for an elegant solution (and an opportunity to learn!).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

残月升风 2024-11-13 07:51:37
use List::Util 'max';
my $max = max(values %hash);
my %hash_max = map { $hash{$_}==$max ? ($_, $max) : () } keys %hash;

或者一次性方法(与另一个答案类似但略有不同):

my $max;
my %hash_max;
keys %hash; # reset iterator
while (my ($key, $value) = each %hash) {
    if ( !defined $max || $value > $max ) {
        %hash_max = ();
        $max = $value;
    }
    $hash_max{$key} = $value if $max == $value;
}
use List::Util 'max';
my $max = max(values %hash);
my %hash_max = map { $hash{$_}==$max ? ($_, $max) : () } keys %hash;

Or a one-pass approach (similar to but slightly different from another answer):

my $max;
my %hash_max;
keys %hash; # reset iterator
while (my ($key, $value) = each %hash) {
    if ( !defined $max || $value > $max ) {
        %hash_max = ();
        $max = $value;
    }
    $hash_max{$key} = $value if $max == $value;
}
请帮我爱他 2024-11-13 07:51:37

这使得一次数据传递,但浪费了大量的哈希写入:

use strict;
use warnings;

my %hash = (
    key1 => 2,
    key2 => 6,
    key3 => 6,
);

my %hash_max = ();
my $max;
foreach my $key (keys %hash) {
        if (!defined($max) || $max < $hash{$key} ) {
                %hash_max = ();
                $max = $hash{$key};
                $hash_max{$key} = $hash{$key};
        }
        elsif ($max == $hash{$key}) {
                $hash_max{$key} = $hash{$key};
        }
}

foreach my $key (keys %hash_max) {
        print "$key\t$hash_max{$key}\n";
}

This makes one pass over the data, but wastes a lot of hash writes:

use strict;
use warnings;

my %hash = (
    key1 => 2,
    key2 => 6,
    key3 => 6,
);

my %hash_max = ();
my $max;
foreach my $key (keys %hash) {
        if (!defined($max) || $max < $hash{$key} ) {
                %hash_max = ();
                $max = $hash{$key};
                $hash_max{$key} = $hash{$key};
        }
        elsif ($max == $hash{$key}) {
                $hash_max{$key} = $hash{$key};
        }
}

foreach my $key (keys %hash_max) {
        print "$key\t$hash_max{$key}\n";
}
过期情话 2024-11-13 07:51:37
# sort numerically descending
my @topkey = sort {$hash{$b} <=> $hash{$a}} keys %hash;

然后将顶部值复制到 %hash_max,并在最后一个最大值后添加循环终止符:

for $key (@topkey) {
    if ($hash{$key} == $hash{$topkey[0]}) {
        $hash_max{$key} = $hash{$key}
    } else { last }
}

ETA:请注意,last 有效,因为 @topkey 中的键已排序,因此当该值不再像第一个值时,我们可以中断循环。即以下所有值都较低。

# sort numerically descending
my @topkey = sort {$hash{$b} <=> $hash{$a}} keys %hash;

Then copy the top values to %hash_max, with a loop terminator after the last max value:

for $key (@topkey) {
    if ($hash{$key} == $hash{$topkey[0]}) {
        $hash_max{$key} = $hash{$key}
    } else { last }
}

ETA: Note to the unbelievers that last works because the keys in @topkey are sorted, so we can break the loop when the value is no longer like the first one. I.e. all the following values are lower.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文