Consider the class below that represents a Broker:

public class Broker
{
    public string Name = string.Empty;
    public int Weight = 0;

    public Broker(string n, int w)
    {
        this.Name = n;
        this.Weight = w;
    }
}

I'd like to randomly select a Broker from an array, taking into account their weights.

What do you think of the code below?

class Program
    {
        private static Random _rnd = new Random();

        public static Broker GetBroker(List<Broker> brokers, int totalWeight)
        {
            // totalWeight is the sum of all brokers' weight

            int randomNumber = _rnd.Next(0, totalWeight);

            Broker selectedBroker = null;
            foreach (Broker broker in brokers)
            {
                if (randomNumber <= broker.Weight)
                {
                    selectedBroker = broker;
                    break;
                }

                randomNumber = randomNumber - broker.Weight;
            }

            return selectedBroker;
        }


        static void Main(string[] args)
        {
            List<Broker> brokers = new List<Broker>();
            brokers.Add(new Broker("A", 10));
            brokers.Add(new Broker("B", 20));
            brokers.Add(new Broker("C", 20));
            brokers.Add(new Broker("D", 10));

            // total the weigth
            int totalWeight = 0;
            foreach (Broker broker in brokers)
            {
                totalWeight += broker.Weight;
            }

            while (true)
            {
                Dictionary<string, int> result = new Dictionary<string, int>();

                Broker selectedBroker = null;

                for (int i = 0; i < 1000; i++)
                {
                    selectedBroker = GetBroker(brokers, totalWeight);
                    if (selectedBroker != null)
                    {
                        if (result.ContainsKey(selectedBroker.Name))
                        {
                            result[selectedBroker.Name] = result[selectedBroker.Name] + 1;
                        }
                        else
                        {
                            result.Add(selectedBroker.Name, 1);
                        }
                    }
                }


                Console.WriteLine("A\t\t" + result["A"]);
                Console.WriteLine("B\t\t" + result["B"]);
                Console.WriteLine("C\t\t" + result["C"]);
                Console.WriteLine("D\t\t" + result["D"]);

                result.Clear();
                Console.WriteLine();
                Console.ReadLine();
            }
        }
    }

I'm not so confident. When I run this, Broker A always gets more hits than Broker D, and they have the same weight.

Is there a more accurate algorithm?

Thanks!

link|improve this question

feedback

6 Answers

up vote 21 down vote accepted

Your algorithm is nearly correct. However, the test should be < instead of <=:

if (randomNumber < broker.Weight)

This is because 0 is inclusive in the random number while totalWeight is exclusive. In other words, a broker with weight 0 would still have a small chance of being selected – not at all what you want. This accounts for broker A having more hits than broker D.

Other than that, your algorithm is fine and in fact the canonical way of solving this problem.

link|improve this answer
will this also work with weights that are double precision values? – Jordan Jan 3 at 22:56
@Jordan It will, up to the precision of double. However, the above code uses _rnd.Next which only works on integer ranges. To use a double range, you need to use the appropriate method for generating a number from a double range. – Konrad Rudolph Jan 3 at 23:03
I know. Random has a NextDouble method that returns a double between 0.0 and 1.0. I can just multiply this value by the total weight. :) Thanks. – Jordan Jan 3 at 23:09
feedback

More generally,

public class WeightedRandomization
{
    public static IWeighted Choose(List<IWeighted> list, Random rand)
    {
        int totalweight = list.Sum(c => c.Weight);
        int choice = rand.Next(totalweight);
        int sum = 0;

        foreach (IWeighted obj in list)
        {
            for (int i = sum; i < obj.Weight + sum; i++)
            {
                if (i >= choice)
                {
                    return obj;
                }
            }
            sum += obj.Weight;
        }

        return null;
    }
}

public interface IWeighted
{
    int Weight { get; set; }
}

Example:

public class MyClass : IWeighted
{
    private int _id;

    private int _weight;

    public int Id
    {
        get
        {
            return this._id;
        }
        set
        {
            this._id=value;
        }
    }

    public int Weight
    {
        get
        {
            return this._weight;
        }
        set
        {
            this._weight=value;
        }

    }
}

public class ExampleClass
{
    public void Randomize()
    {
        Random r=new Random();
        List<MyClass> list=new List<MyClass>();
        list.Add(new MyClass{Id=1,Weight=1});
        list.Add(new MyClass{Id=2,Weight=10});
        list.Add(new MyClass{Id=3,Weight=100});
        list.Add(new MyClass{Id=4,Weight=1000});

        MyClass randomlyselectedobject=WeightedRandomization.Choose(list.Cast<IWeighted>().ToList<IWeighted>(),r) as MyClass;
    }
}
link|improve this answer
feedback

An alternative method favours speed when selecting the broker over memory usage. Basically we create the list containing the same number of references to a broker instance as the specified weight.

List<Broker> brokers = new List<Broker>();
for (int i=0; i<10; i++)
    brokers.Add(new Broker("A", 10));
for (int i=0; i<20; i++)
    brokers.Add(new Broker("B", 20));
for (int i=0; i<20; i++)
    brokers.Add(new Broker("C", 20));
for (int i=0; i<10; i++)
    brokers.Add(new Broker("D", 10));

Then, to select a randomly weighted instance is an O(1) operation:

int randomNumber = _rnd.Next(0, brokers.length);
selectedBroker = brokers[randomNumber];
link|improve this answer
Yet another alternative that won't cost so much memory would be to use indexes into the Broker array. – HRJ Dec 25 '10 at 15:22
feedback

You might find this link helpful (It's not just a google search result: I'm one of the participants in that thread).

link|improve this answer
feedback

If you want more speed you can either consider weighted reservoir sampling where you don't have to find the total weight ahead of time (but you sample more often from the random number generator). The code might look something like

Broker selected = null;
int s = 0;
foreach(Broker broker in brokers) {
    s += broker.Weight;
    if (broker.Weight <= _rnd.Next(0,s)) {
        selected = broker;
    }
}

This requires going once through the list brokers. However if the list of brokers is fixed or doesn't change that often you can keep an array of cumulative sums, i.e. A[i] is the sum of weights of all brokers 0,..,i-1. Then A[n] is the total weight and if you pick a number between 1 and A[n-1], say x you find the broker j s.t. A[j-1] <= x < A[j]. For convenience you let A[0] = 0. You can find this broker number j in log(n) steps using binary search, I'll leave the code as an easy exercise. If your data changes frequently this might not be a good way to go since every time some weight changes you might need to update a large portion of the array.

link|improve this answer
feedback

I've come up with a generic version of this solution:

public static class WeightedEx
{
    /// <summary>
    /// Select an item from the given sequence according to their respective weights.
    /// </summary>
    /// <typeparam name="TItem">Type of item item in the given sequence.</typeparam>
    /// <param name="a_source">Given sequence of weighted items.</param>
    /// <returns>Randomly picked item.</returns>
    public static TItem PickWeighted<TItem>(this IEnumerable<TItem> a_source)
        where TItem : IWeighted
    {
        Random rand = new Random();

        if (!a_source.Any())
            return default(TItem);

        double dTotalWeight = a_source.Sum(i => i.Weight);

        while (true)
        {
            double dRandom = rand.NextDouble() * dTotalWeight;

            foreach (var item in a_source)
            {
                if (dRandom < item.Weight)
                    return item;

                dRandom -= item.Weight;
            }
        }
    }
}

/// <summary>
/// IWeighted: Implementation of an item that is weighted.
/// </summary>
public interface IWeighted
{
    double Weight { get; }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.