Please suggest an easiest way to get a random shuffled collection of count 'n' from a collection having 'N' items. where n <= N

link|improve this question

78% accept rate
feedback

5 Answers

up vote 5 down vote accepted

Another option is to use OrderBy and to sort on a GUID value, which you can do so using:

var result = sequence.OrderBy(elem => Guid.NewGuid());

I did some empirical tests to convince myself that the above actually generates a random distribution (which it appears to do). You can see my results at Techniques for Randomly Reordering an Array.

link|improve this answer
4  
This solution violates the contract of orderby, specifically that a given object has a consistent key throughout the sort. If it does work, it does so through chance alone, and could break in future versions of the framework. For more details, see blogs.msdn.com/b/ericlippert/archive/2011/01/31/… – John Melville Apr 27 '11 at 23:22
feedback

Further to mquander's answer and Dan Blanchard's comment, here's a LINQ-friendly extension method that performs a Fisher-Yates-Durstenfeld shuffle:

// take n random items from yourCollection
var randomItems = yourCollection.Shuffle().Take(n);

// ...

public static class EnumerableExtensions
{
    public static IEnumerable<T> Shuffle<T>(this IEnumerable<T> source)
    {
        return source.Shuffle(new Random());
    }

    public static IEnumerable<T> Shuffle<T>(this IEnumerable<T> source, Random rng)
    {
        if (source == null) throw new ArgumentNullException("source");
        if (rng == null) throw new ArgumentNullException("rng");

        return source.ShuffleIterator(rng);
    }

    private static IEnumerable<T> ShuffleIterator<T>(
        this IEnumerable<T> source, Random rng)
    {
        List<T> buffer = source.ToList();
        for (int i = 0; i < buffer.Count; i++)
        {
            int j = rng.Next(i, buffer.Count);
            yield return buffer[j];

            buffer[j] = buffer[i];
        }
    }
}
link|improve this answer
1  
+1 Linqy and efficient. Hats off :) – Dan Blanchard Oct 31 '09 at 17:11
+1 best seen so far. Should be in .Net – lukas Jun 26 '11 at 22:39
Is it me or does this method screw up the list index? Whenever is use elementAt() after shuffling the result I get is totally unexpected... – Htbaa Jan 3 at 11:45
1  
@Htbaa: The method returns a lazily evaluated sequence. If you do seq.Shuffle().ElementAt(n) multiple times then you're re-shuffling each time so it's likely that you'll get a different item at position n. If you want to shuffle once then you need to store the sequence in a concrete collection of some kind: for example, var list = seq.Shuffle().ToList(). Then you can do list.ElementAt(n) as often as you like -- or just list[n] -- and you'll always get the same item back. – LukeH Jan 3 at 11:52
Ah thanks! Will use that. Am still quite new to C# and LINQ, so I was a bit baffled by the result I was getting :-). – Htbaa Jan 3 at 19:13
feedback

Shuffle the collection into a random order and take the first n items from the result.

link|improve this answer
4  
Note that you don't have to completely shuffle the collection when n < N. You simply have to iterate through Durstenfeld's algorithm n times, and take the last n items of the (partially) shuffled result. – Dan Blanchard Oct 30 '09 at 20:38
feedback

Sorry for ugly code :-), but


var result =yourCollection.OrderBy(p => (p.GetHashCode().ToString() + Guid.NewGuid().ToString()).GetHashCode()).Take(n);

link|improve this answer
feedback

This has some issues with "random bias" and I am sure it's not optimal, this is another possibility:

var r = new Random();
l.OrderBy(x => r.NextDouble()).Take(n);
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.