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!!
feedback
|