Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

(dkubb) Re: (3) Looking up a hash by value

by dkubb (Deacon)
on Feb 26, 2001 at 15:10 UTC ( [id://60843]=note: print w/replies, xml ) Need Help??


in reply to Re: Re: Looking up a hash by value
in thread Looking up a hash by value

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} };

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (4)
As of 2024-04-18 20:53 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found