in reply to Pair of items
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:for ($ref=0; $ref<$#items; $ref++) { for (@{$items[$ref]}) { if (!$contains{$_}) { $contains{$_} = [$ref]; } else { push @{ +$contains{$_}}, $ref; } } }
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.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 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.
|
|---|