Here's what I came up with for weighted selection without replacement:
def WeightedSelectionWithoutReplacement(l, n): """Selects without replacement n random elements from a list of (weight, item) tuples.""" l = sorted((random.random() * x[0], x[1]) for x in l) return l[-n:]This is O(n log n) on the number of items in the list to be selected from. I'm fairly certain this will weight items correctly, though I haven't verified it in any formal sense.
Here's what I came up with for weighted selection with replacement:
def WeightedSelectionWithReplacement(l, n): """Selects with replacement n random elements from a list of (weight, item) tuples.""" cuml = [] total_weight = 0.0 for weight, item in l: total_weight += weight cuml.append((total_weight, item)) return [cuml[bisect.bisect(cuml, random.random()*total_weight)] for x in range(n)]This is O(n + m log n), where n is the number of items in the input list, and m is the number of items to be selected.
Does anyone have any suggestions on ways to improve these - either to make them simplerthe best approach in this situation? I have my own solutions, or but I'm hoping to find something more efficient, simpler, or both?.
