show/hide this revision's text 4 better example usage

Update: On request, here's a basic implementation. Haven't tuned it at all. Usage:

>>> t1 = build_tree([('one', 20), ('two', 2), ('three', 50)])Branch(Leaf(20, 'one'), Branch(Leaf(2, 'two'), Leaf(50, 'three')))>>> t1.sample()Leaf(50, 'three')>>> t1.sample()Leaf(20, 'one')>>> t2 = build_tree([('four', 10), ('five', 30)])>>> t1a, t2a = transfer(t1, t2)Branch(Leaf(20, 'one'), Leaf(2, 'two'))Branch(Leaf(10, 'four'), Branch(Leaf(30, 'five'), Leaf(50, 'three')))

Code:

>>> x = [('one', 20), ('two', 2), ('three', 50)]>>> t1 = build_tree(x)Branch(Leaf(20, 'one'), Branch(Leaf(2, 'two'), Leaf(50, 'three')))>>> t1.sample()Leaf(50, 'three')>>> t1.sample()Leaf(20, 'one')>>> t1.extract()(Leaf(50, 'three'), Branch(Leaf(20, 'one'), Leaf(2, 'two')))
show/hide this revision's text 3 add code

Update: On request, here's a basic implementation. Haven't tuned it at all.

import randomdef build_tree(pairs):    tree = Empty()    for value, weight in pairs:        tree = tree.add(Leaf(weight, value))    return treedef transfer(from_tree, to_tree):    """Given a nonempty tree and a target, move a leaf from the former to    the latter. Return the two updated trees."""    leaf, from_tree1 = from_tree.extract()    return from_tree1, to_tree.add(leaf)class Tree:    def add(self, leaf):        "Return a new tree holding my leaves plus the given leaf."    def sample(self):        "Pick one of my leaves at random in proportion to its weight."        return self.sampling(random.uniform(0, self.weight))    def extract(self):        """Pick one of my leaves and return it along with a new tree        holding my leaves minus that one leaf."""        return self.extracting(random.uniform(0, self.weight))        class Empty(Tree):    weight = 0    def __repr__(self):        return 'Empty()'    def add(self, leaf):        return leaf    def sampling(self, weight):        raise Exception("You can't sample an empty tree")    def extracting(self, weight):        raise Exception("You can't extract from an empty tree")class Leaf(Tree):    def __init__(self, weight, value):        self.weight = weight        self.value = value    def __repr__(self):        return 'Leaf(%r, %r)' % (self.weight, self.value)    def add(self, leaf):        return Branch(self, leaf)    def sampling(self, weight):        return self    def extracting(self, weight):        return self, Empty()def combine(left, right):    if isinstance(left, Empty): return right    if isinstance(right, Empty): return left    return Branch(left, right)class Branch(Tree):    def __init__(self, left, right):        self.weight = left.weight + right.weight        self.left = left        self.right = right    def __repr__(self):        return 'Branch(%r, %r)' % (self.left, self.right)    def add(self, leaf):        # Adding to a random branch as a clumsy way to keep an        # approximately balanced tree.        if random.random() < 0.5:            return combine(self.left.add(leaf), self.right)        return combine(self.left, self.right.add(leaf))    def sampling(self, weight):        if weight < self.left.weight:            return self.left.sampling(weight)        return self.right.sampling(weight - self.left.weight)    def extracting(self, weight):        if weight < self.left.weight:            leaf, left1 = self.left.extracting(weight)            return leaf, combine(left1, self.right)        leaf, right1 = self.right.extracting(weight - self.left.weight)        return leaf, combine(self.left, right1)>>> x = [('one', 20), ('two', 2), ('three', 50)]>>> t1 = build_tree(x)Branch(Leaf(20, 'one'), Branch(Leaf(2, 'two'), Leaf(50, 'three')))>>> t1.sample()Leaf(50, 'three')>>> t1.sample()Leaf(20, 'one')>>> t1.extract()(Leaf(50, 'three'), Branch(Leaf(20, 'one'), Leaf(2, 'two')))
        
show/hide this revision's text 2 deletions are unbalanced

In comments on the original post, Nicholas Leonard suggests that both the exchanging and the sampling need to be fast. Here's an idea for that case; I haven't tried it.

If only sampling had to be fast, we could use an array of the values together with the running sum of their probabilities, and do a binary search on the running sum (with key being a uniform random number) -- an O(log(n)) operation. But an exchange would require updating all of the running-sum values appearing after the entries exchanged -- an O(n) operation. (Could you choose to exchange only items near the end of their lists? I'll assume not.)

So instead of an array, keep a binary tree for each set to sample from. A leaf holds the sample value and its (unnormalized) probability. A branch node holds the total probability of its children.

To sample, generate a uniform random number x between 0 and the total probability of the root, and descend the tree. At each branch, choose the left child if the left child has total probability <= x. Else subtract the left child's probability from x and go right. Return the leaf value you reach.

To exchange, remove the leaf from its tree and adjust the branches that lead down to it (decreasing their total probability, and cutting out any single-child branch nodes). Insert the leaf into the destination tree: you have a choice of where to put it, so keep it balanced. Picking a random child at each level is probably good enough -- that's where I'd start. Increase each parent node's probability, back up to the root.

Now both sampling and exchange are O(log(n)) on average. (If you need guaranteed balance, a simple way is to add another field to the branch nodes holding the count of leaves in the whole subtree. When adding a leaf, at each level pick the child with fewer leaves.leaves. This leaves the possibility of a tree getting unbalanced solely by deletions; this can't be a problem if there's reasonably even traffic between the sets, but if it is, then choose rotations during deletion using the leaf-count information on each node in your traversal.)

show/hide this revision's text 1