Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: Building "islands" of related data

by Ryszard (Priest)
on Dec 09, 2005 at 11:09 UTC ( [id://515509]=note: print w/replies, xml ) Need Help??


in reply to Building "islands" of related data

ok, so, if performance, speed, and anything good is not a problem to trample on, how about this:
#!/usr/bin/perl -w use strict; use Data::Dumper; use Digest::MD5 qw(md5_hex); # I want to group domains together if they share at least two of those + values. # The 1st two entires match, the 3rd not my %domains = ( 'foo.com' => { phone => '1234', company => 'big co', contact => 'john', address => 'cool street', fax => '5678', email => 'john@bigco.com', }, 'bar.com' => { phone => '2222', company => 'small co', contact => 'jeff', address => 'bad street', fax => '5678', email => 'john@bigco.com', }, 'baz.com' => { phone => '9999', company => 'another co', contact => 'judy', address => 'nasty street', fax => '8888', email => 'frank@anotherco.com', }, ); # Build permutation hash foreach my $domain (keys %domains) { # Iterate over all the elements in the domain hash foreach my $o_attr (keys %{$domains{$domain}}){ # As we're creating hashes of each permutation we need to iter +ate # over the same elements foreach my $i_attr (keys %{$domains{$domain}}){ $domains{$domain}{hash}{$o_attr}{$i_attr} = md5_hex(${$dom +ains{$domain}}{$o_attr}.${$domains{$domain}}{$i_attr}); } } } print Dumper(%domains);

You can then loop over all the permutations looking for hashes that match!

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (5)
As of 2024-04-18 09:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found