Ok, Given that use, I would probably do either a sparse array, or a *cringe* hash with numeric keys. Please note that your data under each first level key is not correct...
my %hash = (
1 => [
{ name => "Shrek", event => "I saw shrek!" },
],
6 => [
{ name => "Donkey", event => "I saw the donkey!" },
{ name => "Fiona", event => "I saw Fiona!" },
],
);
You would access this stuff then with....
for my $trigger ( @{ $hash{$cnt} || [] } ) {
# Do work here with $trigger ....
}
See Re: Determine largest key in hash for details on how to push data into the trigger list.
As a sparse array, this would look like...
my @data = (
[ # 0 (remember, we are zero-based)
{ name => "Shrek", event => "I saw shrek!" },
],
undef, # 1
undef, # 2
undef, # 3
undef, # 4
[ # 5 - zero-based => 6th element
{ name => "Donkey", event => "I saw the donkey!" },
{ name => "Fiona", event => "I saw Fiona!" },
],
);
You would change your loop to...
for my $trigger ( @{ $data[$cnt-1] || [] } ) {
# Do work here with $trigger ....
}
I still have a little bit of a cringe-factor with the layout of the sparse array, and would probably reevaluate the control logic around that, but this shows a couple of ways where the structure can make quite a difference in how you manage your data.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
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, 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, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.