Edit: Here is the math behind this method. The normal method for weighted items is to generate the sum and then probx=weightx/sumw. This has a performance problem because you either have to generate a map that is size sumw each time a weight changes or you have to do a search each time a random number is generated to find the value.
My method uses a probability tree that would have the exact same probability distribution if you were to make it infinitely large. However the terms fall off at a fairly fast rate so I capped my tree at 100 levels and then just pick a item to give it an end condition. To accomplish this I needed a standard max weight which I choose to be 100.
Using this the algorithm is the following. If there are n items choose one at random ri which gives the standard not weighted probability 1/n that each item will be chosen. Then calculate another random in the range 0 to maxw and if r < w[ri] return item ri.Else repeat by choosing another random ri and repeating the test.
Here is the math.
n = number of items sumw = sum(wx) px=wx/100 prob of returning item if given a chance qx = 1-px sqx = sum of all qx Pi is the overall probability that an item will be returned s = sum k=0 to inf (sqx/n)**k It can be shown that Pi = px*s/n == wx/sumw Instead of allowing an infinite sum I choose to sum s only over the first 100 tries which makes s with the end condition s= (sum k=0 to 99 of (sqx/n)**k) + ((sqx/n)**100)/n The difference between the two is someting in the order of 10**-15. You can reduce the max tries to something like 50 or 25 with not a huge loss in accuracy.You can think of it as all of the weights are setting the path length and shorter the path ie larger the weight the more probable that that item will be selected.
def __init__(self,olist, wlist)wlist,n=0,remove=False): if n==0: else: while (self._len > 0: ) and (self._n>0): self._n -= 1 if self._remove: else: yield self._odata[i]for x in RandomObject(o,wx)RandomObject(o,wx,50):