I have an array (could make it into a set I think) of around 1000-2000 dictionaries. Each one of those has a key whose value (a float... they don't add up to anything specific) I want to use as a weight (selection probability) to randomly choose one of them. I know the basic algorithm to do this: add all weights, get a random from 0 to the sum and iterate through my array subtracting from the sum until it's less than the current weight. Now, I'm just starting out with Cocoa and, seeing how it comes with all that wonderful stuff I hope to master someday (like predicates) I know there must be a "best" and most performant way to do something like this... wouldn't be surprised if there already was a class that needed little subclassing customization to do exactly that. Furthermore, I won't add or remove elements from the array, but I'm going to be changing their weights very often (and try to select a new element after each change) so doing this lookup every time is probably a bad idea. how would a seasoned iOS dev go about approaching this? Thank you!!

link|improve this question

25% accept rate
If you know your weights are constant you can remember the cumulative sums and use a binary search, but with only 2000 dicts and if the weights change often iterating through the weights each time is a perfectly decent approach. – user97370 Dec 25 '11 at 0:49
@user97370 thanks! could you please post that as the answer so I can mark it as correct? – figaza Jan 24 at 1:49
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.