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.
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.
import random
class RandomObject:
"""
The objects are in a list
ex [o1,o2,o3,o4]
The weight list should contain values between 0 and 100.
ex [0.1,1,10,100]
it is up to the caller to make sure object list and weight list are same size
"""
def __init__(self,olist, wlist,n=0,remove=False):
self._odata = olist[:]
self._wdata = wlist[:]
self._len=len(wlist)
if n==0:
self._n=self._len
else:
self._n=n
self._remove=remove
def __iter__(self):
return self.next()
def next(self):
while (self._len > 0) and (self._n>0):
self._n -= 1
i=self.i()
if i < self._len:
if self._remove:
self._len -=1
self._wdata.pop(i)
yield self._odata.pop(i)
else:
yield self._odata[i]
def GetObject(self,i):
if i < self._len:
return self._odata[i]
else:
return None
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 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):
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
o=[1,2,3,4]
wx=[0.1,1,10,100] #weight list
ro=RandomObject(o,wx)
l=[]
for i in range(100):
o=ro.GetRdnObject()
l.append(o[0])
print("random list=",l)
#modify the weights
ro.SetWeight(0,100)
ro.SetWeight(1,50)
ro.SetWeight(2,0)
ro.SetWeight(3,0)
l=[]
for i in range(100):
o=ro.GetRdnObject()
l.append(o[0])
print("random list=",l)
arsize=2500
lpsz=100
wx=[x*100/arsize for x in range(arsize)] #weight list
o=[x for x in range(arsize)]
ro=RandomObject(o,wx)
l=[]
print("loop size=",lpsz)
for j in range(lpsz):
o=ro.RemoveRndObject()
l.append(o[0])
print("random list=",l)
arsize=100
wx=[x*100/arsize for x in range(arsize)] #weight list
o=[x for x in range(arsize)]
#iterate over the objects
l=[]
for x in RandomObject(o,wx,50):
l.append(x)
print("random list=",l)