in reply to Looking up a hash by value

If you're gonna do this once, or with constantly changing values, a linear search is the best you can get:
my $seen = 0; while (my ($key, $value) = each %whop) { $seen = 1, last if $value eq $newm; } if ($seen) { ... }
Otherwise, cache the values %whop as hash keys, and do your lookups there.

-- Randal L. Schwartz, Perl hacker

Replies are listed 'Best First'.
Re: Re: Looking up a hash by value
by tomhukins (Curate) on Feb 23, 2001 at 22:42 UTC
    Otherwise, cache the values %whop as hash keys, and do your lookups there.

    Using reverse is faster than values (unless I've misunderstood how you'd do this), especially for larger hashes (I'm using Perl 5.005_03 on FreeBSD 4.2):

    use Benchmark qw(timethese); use constant VALUE => 5000; my %hash = ( 1..VALUE); timethese(1_000_000 / VALUE, { 'reverse' => sub { my %values = reverse %hash; }, 'map_values' => sub { my %values = map {$_ => undef} values %hash; } });

    For VALUE => 5000:
    Benchmark: timing 200 iterations of map_values, reverse...
    map_values: 10 wallclock secs ( 9.40 usr + 0.00 sys = 9.40 CPU)
    reverse: 4 wallclock secs ( 3.51 usr + 0.01 sys = 3.52 CPU)

    For VALUE => 50:
    Benchmark: timing 20000 iterations of map_values, reverse...
    map_values: 3 wallclock secs ( 2.95 usr + 0.00 sys = 2.95 CPU)
    reverse: 3 wallclock secs ( 2.55 usr + 0.01 sys = 2.55 CPU)

        Thanks, I understand what you mean now.

        Interestingly, this is slightly slower than reverse for hashes with few key/value pairs (25), while ... each performs faster on my system for hashes with more than 1500 key/value pairs.

        Of course, I'm using simple data (integers) as my keys and values, so this benchmark may not test real world performance.

        The main reason I would use reverse is that I find it makes the code more readable.

      There is a problem with the common way we are making a "lookup by-value hash" to find the corresponding keys in the source hash:

      What if two keys in a hash have the same value? When reversing the hash, or creating the lookup hash, the last identical value will clobber those before it. Here's some code to show you what I mean:

      #!/usr/bin/perl -w use strict; use Data::Dumper qw(Dumper); my %hash = ( a => 1, b => 1, c => 1, d => 2, e => 2, f => 2, ); my %by_value = reverse %hash; print Dumper(\%by_value);

      will print out something like:

      $VAR1 = { '1' => 'a', '2' => 'e' };

      This isn't what we want, there was a loss of information, during the copy to %by_value, the keys "a" and "e" were the last to have the values of 1, and 2 respectively. Since they were being assigned to a new hash, the last to get copied wins. Even worse, the order that the reverse is done in is not garaunteed to be the same, so you could get unpredictible results on other computers or possibly even from different versions of perl.

      IMHO, a better way to do it would be to create a data structure that allows the lookups by value and preserves the original matching keys. Here is one possible way to do it:

      my %hash = ( a => 1, b => 1, c => 1, d => 2, e => 2, f => 2, ); my %by_value; while(my($key, $value) = each %hash) { push @{ $by_value{$value} }, $key; } print Dumper(\%by_value);

      which will print:

      $VAR1 = { '1' => [ 'a', 'b', 'c' ], '2' => [ 'e', 'f', 'd' ] };

      This above data structure correctly represents the relationship between a key and a value in a hash. That is, it allows any given value to have one or more keys in a hash. Accessing this structure is simple, if you want to see all the matching keys that have a value of "1", you can access the %by_value hash, like this:

      print join "\n", @{ $by_value{1} };