Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

comment on

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


In reply to Re: Pair of items by PhiRatE
in thread Pair of items by artist

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 taking refuge in the Monastery: (5)
As of 2024-03-28 08:35 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found