Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
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!


In reply to Re: Building "islands" of related data by Ryszard
in thread Building "islands" of related data by japhy

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (3)
As of 2024-04-25 13:05 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found