What are your performance requirements? you said "some items in an array", which indicates to me that you're talking 10 or 20, which means that the solutions provided are fine.
If you start talking about large sets however, you're going to get in real trouble iterating over the whole lot doing is_ok's, you want to cull out all the unavailable options as soon as possible so you can pick the first available one straight off. To do this you have a quick setup phase like this:
for ($ref=0; $ref<$#items; $ref++) {
for (@{$items[$ref]}) {
if (!$contains{$_}) { $contains{$_} = [$ref]; } else { push @{
+$contains{$_}}, $ref; }
}
}
This gives you a hash of arrays called %contains, which maps numbers to the index of the items array of an element containing that number. From this, you can determine all pairs which are acceptable partners like this:
sub get_pairs {
my %invalids = ();
my @valids = ();
for $number (@_) {
for $id (@{$contains{$number}}) {
$invalids{$id} = 1;
}
}
for ($id=0; $id < $#items; $id++) {
push @valids, $items[$id];
}
return @valids;
}
@all_matches = get_pairs(2,3,4)
You can of course get a single acceptable pair much faster by just scanning up the possible ids until you reach one that isn't invalid.
You gain significant improvements using this method in instances where you have a *lot* of comparisons, and when you need all available matches. For a smal number of comparisons the setup cost for this method is probably not worth it.
All code is example only, hasn't been tested etc and doesn't properly scope or anything. Hopefully the point is fairly obvious.
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.