show/hide this revision's text 2 Removed my solution to post in an answer.

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?.

show/hide this revision's text 1

Weighted random selection with and without replacement

Recently I needed to do weighted random selection of elements from a list, both with and without replacement. While there are well known and good algorithms for unweighted selection, and some for weighted selection without replacement (such as modifications of the resevoir algorithm), I couldn't find any good algorithms for weighted selection with replacement. I also wanted to avoid the resevoir method, as I was selecting a significant fraction of the list, which is small enough to hold in memory.

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 simpler, or more efficient, or both?