show/hide this revision's text 3 added math

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):
show/hide this revision's text 2 big code change

Here is a version that generates a random index that allows for changing the weights on the fly. It chooses a random object and then generates a random number between 0 and 100 then does a test of this value against the weight to determine if to choose the random element or to try again. After 100 tries if nothing is found just pick a random index and call it a day. The two interesting methods are GetRdnObject which returns a random object and RemoveRndObject which removes and returns a random object. There is also an iterator so you can loop over the objects with the most probable coming out first.

class RandomIndexRandomObject: The objects are in a list ex [o1,o2,o3,o4] The weight list should contain values between 0 and 100. it is up to the caller to make sure object list and weight list are same size def __init__(self, _init__(self,olist, wlist): self._odata = olist[:] def __iter__(self): return self.next() def next(self): while self._len > 0: i=self.i() if i < self._len: self._len -=1 self._wdata.pop(i) yield self._odata.pop(i) def GetObject(self,i): if i < self._len: return self._odata[i] else: return None def GetWeight(self,i): def RemoveObject(self,i): if i < self._len: self._len -=1 self._wdata.pop(i) return self._odata.pop(i) else: return None def Remove(self,i): if (self._len >0 ) and (i < self._len): self._len -=1 self._wdata.pop(i) def Append(self,o,w): self._len +=1 self._wdata.append(w) self._odata.append(o) def Insert(self,i,o,w): if i < self._len: self._len +=1 self._wdata.insert(i,w) self._odata.insert(i,o) else: self._len +=1 self._wdata.append(w) self._odata.append(o) def GetRdnObject(self): i=self.i() if (self._len >0 ) and (i < self._len): return [self._odata[i],i] else: return None def RemoveRndObject(self): i=self.i() if (self._len >0 ) and (i < self._len): self._len -=1 self._wdata.pop(i) return [self._odata.pop(i),i] else: return None def i(self):ri=RandomIndex(wxro=RandomObject(o,wx)cnt=[0,0,0,0l=[]for i in range(1000)range(100): cnt[ri.i()] +=1print(cnto=ro.GetRdnObject() cnt=[0,0,0,0]print("random list=",l)ri.SetWeight(0,99.5ro.SetWeight(0,100) ri.SetWeight(1,50ro.SetWeight(1,50)ri.SetWeight(2,0ro.SetWeight(2,0)ri.SetWeight(3,0ro.SetWeight(3,0)for i in range(1000)range(100): cnt[ri.i()o=ro.GetRdnObject() l.append(o[0])print("random list=",l)wx=[x*100/arsize for x in range(arsize)] +=1print(cnt#weight listo=[x for x in range(arsize)]print("loop size=",lpsz)for j in range(lpsz): o=ro.RemoveRndObject() l.append(o[0])print("random list=",l)wx=[x*100/arsize for x in range(arsize)] #weight listo=[x for x in range(arsize)]#iterate over the objectsfor x in RandomObject(o,wx): l.append(x)print("random list=",l)
show/hide this revision's text 1

Here is a version that generates a random index that allows for changing the weights on the fly. It chooses a random object and then generates a random number between 0 and 100 then does a test of this value against the weight to determine if to choose the random element or to try again. After 100 tries if nothing is found just pick a random index and call it a day.

import random

class RandomIndex:
    """
    The weight list should contain values between 0 and 100.
    ex [0.1,1,10,100]
    """


    def __init__(self, wlist):
        self._wdata = wlist[:]
        self._len=len(wlist)

    def GetWeight(self,i):
        if i < self._len:
            return self._wdata[i]
        else:
            return 0

    def SetWeight(self,i,w):
        if i < self._len:
            self._wdata[i]=w

    def i(self):
        for i in range(100):
            ri=random.randint(0,self._len-1) #choose a random object
            rx=random.uniform(0,100)
            if rx <= self._wdata[ri]: # test to see if that is the value we want
                return ri
        # if you do not find one after 100 tries then just get a random one
        return random.randint(0,self._len-1)             


#test code
wx=[0.1,1,10,100] #weight list
ri=RandomIndex(wx)

cnt=[0,0,0,0]

for i in range(1000):
    cnt[ri.i()] +=1

print(cnt)

cnt=[0,0,0,0]

#modify the weights
ri.SetWeight(0,99.5) 
ri.SetWeight(1,50)
ri.SetWeight(2,0)
ri.SetWeight(3,0)

for i in range(1000):
    cnt[ri.i()] +=1

print(cnt)