vote up 4 vote down star
4

I think I've settled on this as the most simple and unit-testable method for randomising a list, but would be interested to hear of any improvements.

public static IList<T> RandomiseList<T>(IList<T> list, int seed)
{
    Random random = new Random(seed);
    List<T> takeFrom = new List<T>(list);
    List<T> ret = new List<T>(takeFrom.Count);

    while (takeFrom.Count > 0)
    {
        int pos = random.Next(0, takeFrom.Count - 1);
        T item = takeFrom[pos];
        takeFrom.RemoveAt(pos);
        ret.Add(item);
    }

    return ret;
}
flag

Just out of interest, how would you unit-test a method where the result is supposed to be random? – simonn Oct 26 at 20:52
interfaces of course! – johnny g Oct 26 at 21:17
@simonn: in this case, if you pass in the same seed, you'll get the same order back out. – Joel Coehoorn Oct 26 at 21:27
1  
@simonn: You should randomize the same list hundreds or thousands of times, and build a histogram of the results. The probability of any item ending in any position should be equal. You could just eye-ball the results, but you really should run a statistical test at a 5% confidence interval. – abelenky Oct 26 at 21:32

7 Answers

vote up 17 vote down

You want a shuffle, and the best way to do that is the Fisher-Yates shuffle:

public static IList<T> Randomise<T>(IList<T> list, int seed) 
{
    Random rng = new Random(seed); 

    List<T> ret = new List<T>(list);      
    int n = ret.Length;            
    while (n > 1) 
    {
        n--;                         
        int k = rng.Next(n + 1);  
        // Simple swap of variables
        T tmp = list[k];
        ret[k] = ret[n];
        ret[n] = tmp;
    }
    return ret;
}
link|flag
Oh that's what i was going for! You beat me to it! :) – Filip Ekberg Oct 26 at 20:17
Isn't that what he has, though? – PeterAllenWebb Oct 26 at 20:19
No, it's not what he has. He's moving items from one list to another rather than swapping in place. – Joel Coehoorn Oct 26 at 20:21
Okay. Sure. But they are both Fisher-Yates, and therefore result in all output-orders having an equal probability. – PeterAllenWebb Oct 26 at 20:23
So basically, working from the end of the list, you swap each item with another item chosen at random? That makes sense - cheers! – Neil Barnwell Oct 26 at 20:25
show 5 more comments
vote up 14 vote down

I liked Dennis Palmers idea of returning a shuffled IEnumerable instead of shuffle the list in place, but using the RemoveAt method makes it slow. Here is an alternative without the RemoveAt method:

public static IEnumerable<T> Shuffle<T>(IEnumerable<T> list, int seed) {
  Random rnd = new Random(seed);
  List<T> items = new List<T>(list);
  for (int i = 0; i < items.Count; i++) {
    int pos = rnd.Next(i, items.Count);
    yield return items[pos];
    items[pos] = items[i];
  }
}

I thried this with 10000 integers, and it's about 30 times faster.

link|flag
Very nice. Could maybe be improved by counting backwards (simpler rnd.Next call) +1 – Joel Coehoorn Oct 26 at 21:16
Very tempted to delete my own in favor of this. Need to recruit a few more votes for you first so it ends up listed 2nd behind me. – Joel Coehoorn Oct 26 at 21:22
@Joel: I don't think that you should delete your answer, it shows the fundamental principle of an efficient shuffle in a clear way. – Guffa Oct 26 at 21:30
Both answers are nice, but this one really rocks. +1 ! – Cloud Oct 27 at 18:08
vote up 3 vote down

Not sure how much of an improvement this is, but would have performance benefits if the list is large and you only need the first few random items.

public static IEnumerable<T> RandomiseList<T>(IList<T> list, int seed)
{
    Random random = new Random(seed);
    List<T> takeFrom = new List<T>(list);

    while (takeFrom.Count > 0)
    {
        int pos = random.Next(0, takeFrom.Count - 1);
        T item = takeFrom[pos];
        takeFrom.RemoveAt(pos);
        yield return item;
    }
}

Removes the need for a temp list or even a temp swap variable.

If I was going to be using this a lot, I'd rewrite it as an extension method.

link|flag
<3 me some iterator blocks – Joel Coehoorn Oct 26 at 20:31
Also, it's only 9 extra characters after calling this to get your list back if you really need it. – Joel Coehoorn Oct 26 at 20:38
It still has the RemoveAt method, which will make it slow... – Guffa Oct 26 at 20:51
@Guffa: what you recommend instead? A HashSet to track already rolled indexes? – Joel Coehoorn Oct 26 at 21:05
@Joel: A List works fine. You just swap the items so that the unused ones are at the end. Actually you don't have to swap them as the returned item will never be used any more, you only have to move one item and return the other. See the implementation that I posted. – Guffa Oct 26 at 21:10
vote up 2 vote down

This looks good to me. Note that you'll get slightly better performance (especially for large lists) if you initialize ret with the length of list, so that the list doesn't have to be reallocated:

List<T> ret = new List<T>(list.Count);
link|flag
+1 Done, thanks for the pointer! – Neil Barnwell Oct 26 at 20:26
That's won't do much. The most of the time will clearly be spent in the RemoveAt method, as that has to move all the items following the removed one each time. As long as that one is still there, it's rather pointless to try to save anything elsewhere. – Guffa Oct 26 at 20:48
vote up 2 vote down

What sort of suggestions are you looking for exactly? efficiency? correctness? You do mention unit testing ... I think there could definitely be an improvement there.

I actually helped develop an online game and their shuffling mechanism. I don't really suspect performance is much of an issue, as most algorithms you find are by and large the same. I would suggest the following however,

a. create a random interface

public interface IRandom
{
    byte NextRandomByte ();
}

Anything that now consumes this interface can now be mocked\unit tested in a controlled manner or environment. You do not really want to be unit testing truly random algorithms - you won't be able to verify your data!

As for why return a byte, a byte is likely the smallest unit of randomness you could want. Not only that, but if given a means of generating a single random byte, generating a sequence of them and concatenating them together is an easy way of generating an even wider range of random data.

Of course, you will have to be wary of introduing bias to your data ...

b. Ensure quality of data by reducing bias over arbitrary intervals. Assuming underlying data is uniformly random, any interval that is NOT a factor of 256 will introduce bias. Consider this,

// 250 is not a factor of 256!
byte a = random.NextRandomByte () % 250; // values 0-5 are biased!

In the preceeding snippet, values 0-5 have a 2/255 probability to come up, while values 6-249 have a 1/255 probability to come up. That is a significant bias over time. One approach is to check the number coming from the generator, and discard it if it exceeds an acceptable range

// continually generate random data until it is satisfactory
for (byte r = random.NextRandomByte (); r > 250; r = random.NextRandomByte ())
{
}
byte a = r % 250; // r is guaranteed to be on [0, 250], no longer bias

"Acceptable range" may be determined by finding the greatest multiple of your interval that can be represented by your value type. A more generalized form

byte modulo; // specified as parameter
byte biasThreshold = (byte.MaxValue / modulo) * modulo;
for (; unbiasedValue >= biasThreshold; )
{
    // generate value
    unbiasedValue = random.NextRandomByte ();
}

And if you want values greater than byte, simply concatenate the values together,

int modulo; // specified as parameter
int biasThreshold = (int.MaxValue / modulo) * modulo;
for (; unbiasedValue >= biasThreshold; )
{
    // generate value
    byte a = random.NextRandomByte ();
    byte b = random.NextRandomByte ();
    ... 
    int unbiasedValue = a << 24 + b << 16 + c << 8 + d;
}

c. Consume! Place your algorithms or helpers in stateless extension or static classes, like

// forgive my syntax, recalling from memory
public static class IRandomExtensions
{
    public int GetUnbiasedInteger (this IRandom random, int modulo) { }
    public int GetUnbiasedUnsignedInteger (this IRandom random, uint modulo) { }
    public int GetUnbiasedLong (this IRandom random, long modulo) { }
    public int GetUnbiasedUnsignedLong (this IRandom random, ulong modulo) { }
    ...
}

public static class IEnumerableExtensions
{
    public IEnumerable<T> Shuffle<T>(this IEnumerable<T> items, IRandom random) 
    {
        // shuffle away!
        ...
    }

}

Deciding whether or not to implement these as methods on your interface or as external methods [as i've done] is up to you - but keep in mind, making them member methods forces implementors to repeat or duplicate code. Personally, I like extensions. They are very clean. And sexy.

int randomNumber = random.UnbiasedInteger (i - 1);
List<int> shuffledNumbers = numbers.Shuffle (random);


Clearly all of the preceeding is optional, but facilitates unit testing and improves overall quality of your random data.

Random and "fair" dice is a very interesting topic in general. If you are at all interested, I strongly recommend you Google it sometime and perform some research. :)

link|flag
Actually, the built-in prng is already unit-testable in isolation. Just keep passing the same seed, and you'll keep getting the same values back. Of course, the key there is isolation. Eventually you want to test code that relies on it and uses a real seed. But even here, it might be simpler to abstract the seed-selector so you get consistent seeds for your tests. – Joel Coehoorn Oct 26 at 21:21
Hm, some of you may be curious to know how useful any of this is. For one, as I've said, you can unit test predictably. For another, while in SIT, I had several implementation of IRandom, you can probably guess their underlying generators by name alone - ByteQueueRandom, GuidRandom, CryptographicRandom. I could go from predictable, to pseudo, to random with a config change. Oh, and syntactically, myList.Shuffle(random) looks pretty sweet too :) – johnny g Oct 26 at 21:21
@Joel Coehoorn you're absolutely right, i kinda overlooked that. but if given a choice between controlling the generator or seeding someone else's implementation - however unlikely it is to change wrt to my inputs - i would rather opt for control. – johnny g Oct 26 at 21:28
vote up 0 vote down

No stats to support this but it would seem better if your return value starts as an array of the same length as the list and then you insert values directly into a randomly generated index.

link|flag
But then you have to think about collisions, and the obvious approach (choose the first free slot) gives the wrong distribution – simonn Oct 26 at 20:27
I think I've sort've done this by specifying the initial capacity of the return list, based on JS Bangs' suggestion. – Neil Barnwell Oct 26 at 20:28
I actually meant to actually place directly to an index rather than use add but clearly Joel Cahoon's suggestion is best - it has an algorithm name – George Mauer Oct 26 at 20:41
vote up 0 vote down

Be aware of the risks of naive shuffling algorithms, that look good, but do not stand up to testing!

Check this excellent article for an example.

link|flag

Your Answer

Get an OpenID
or

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