I have a script that does some stuff and then e-mails a report to various interested parties based on the results. There are not enough e-mail addresses to warrant a database, or even a separate file. I just have an ugly nested data-structure. The structure is a hash where the keys are categories and the values hashes. The sub-hashes then have some number of name::address pairs.

This worked well until I wanted to look up someone's address by Name instead of category. So I wrote a subroutine to do that... but there went the efficiency of a hash! So now I'm wondering if anyone can think of a more efficient way to do this (keeping in mind that there are only about 15 names and 4 or 5 categories... so far.)

my %EMail = ( # This hash best accessed via GetEMailFor() Category1 => { "Name One", 'some1@address.com', }, Category2 => { "Name Two", 'some2@address.com', "Name Three", 'some3@address.com', }, Category3 => { "Name Four", 'some4@address.com', "Name Five", 'some5@address.com', "Name Six", 'some6@address.com', "Name Seven", 'some7@address.com', "Name Eight", 'some8@address.com', }, # And so on... ); # GetEMailFor( $key, [$key2, $key3...] ) # # Returns the requested e-mail address. # If more then one address is found, they are returned as # a comma delimeted scalar. # The $key may be the person's category or name. # sub GetEMailFor { my @addresses = (); while( @_ ) { my $request = shift; for( keys %EMail ) { if( $_ eq $request ) { push @addresses, values %{$EMail{$_}}; next; } for my $name ( keys %{$EMail{$_}} ) { if( $name eq $request ) { push @addresses, ${$EMail{$_}}{$name}; next; } } } } return join ',', reverse @addresses if $#addresses; return $addresses[0]; } # So print GetEMailFor( 'Category2' ); # prints: some2@address.com,some3@address.com print GetEMailFor( 'Name Five' ); # prints: some5@address.com print GetEMailFor( 'Category1', 'Name Seven' ) # prints: some1@address.com,some7@address.com
I suspect that I might just redo the hash to be less complex, maybe make names and categories keys, but have categories return an array of names... making the user have to re-access the hash with each name if a list gets returned... hmmm thats almost as ugly.

In reply to Complex Hash by Adam

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



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.