vote up 5 vote down star
5

I have a list of objects and I want to reorder them randomly on each request. What is the best way of doing this?

flag

This should really be part of the standard .net class library... – Pyrolistical Jan 6 '09 at 19:58

7 Answers

vote up 11 vote down check

How about some kind of Knuth-Fisher-Yates shuffle algorithm ?

for (int i = cards.Length - 1; i > 0; i--)
{
    int n = rand.Next(i + 1);
    Swap(ref cards[i], ref cards[n]);
}

Code taken from Coding Horror. This is also a recommended reading on how people often do this wrong.

link|flag
Format code as code. But good algorithm. – recursive Jan 6 '09 at 19:52
@recursive Thanks, I reformat the code. – m3rLinEz Jan 6 '09 at 19:54
vote up 0 vote down

Try this code here

It uses the IComparer.Compare

It will be a good practice if you do the function using generics

link|flag
vote up 6 vote down

Check out this cool Linq way of doing it:

public class Employee
{
    public int Id
    {
        get;
        set;
    }
    public string Name
    {
        get;
        set;
    }
}

Populate a list:

    List<Employee> list = new List<Employee>();

    list.Add(new Employee { Id = 1, Name = "Davolio Nancy" });
    list.Add(new Employee { Id = 2, Name = "Fuller Andrew" });
    list.Add(new Employee { Id = 3, Name = "Leverling Janet" });
    list.Add(new Employee { Id = 4, Name = "Peacock Margaret" });
    list.Add(new Employee { Id = 5, Name = "Buchanan Steven" });
    list.Add(new Employee { Id = 6, Name = "Suyama Michael" });
    list.Add(new Employee { Id = 7, Name = "King Robert" });
    list.Add(new Employee { Id = 8, Name = "Callahan Laura" });
    list.Add(new Employee { Id = 9, Name = "Dodsworth Anne" });

Then sort:

    list = list.OrderBy(emp => Guid.NewGuid()).ToList();

Credit

link|flag
Not exactly fast, but friggen awesome. – Will Jan 6 '09 at 20:15
Who cares about performance when you can whip out your big LINQ stick and show others you're better than them? :-P – BFree Jan 6 '09 at 20:17
Just remember that GUID's are NOT to be treated as random numbers for crypto purposes. They'll work for this kind of thing, but they're not interchangeable. – clintp Jan 6 '09 at 20:18
Goddamn right! Until we HAVE a requirement for doing it fast, that is. – Will Jan 6 '09 at 20:19
msdn.microsoft.com/en-us/library/… use a class similar to the example code to generate a cryptographically random number rather than using NewGuid(). No word on performance on this, tho. – Will Jan 6 '09 at 20:22
show 1 more comment
vote up 0 vote down

I would create a new List and filling it with items that are randomly selected and removed from the original List.

link|flag
vote up 2 vote down

Let me direct you to one WRONG way of doing it, and a way I confess I used before, and never saw the error of it until this blog post:

http://www.codinghorror.com/blog/archives/001015.html

link|flag
That also shows the right way of doing it :) – Jon Skeet Jan 6 '09 at 20:08
vote up 2 vote down

You could use the Fisher-Yates shuffle algorithm which runs in linear-time.

link|flag
Produces incorrect results - see codinghorror.com/blog/archives/… – LFSR Consulting Jan 6 '09 at 19:57
@LFSR: read the article again? – Jimmy Jan 6 '09 at 20:04
What about Knuth? :( – configurator Jan 7 '09 at 0:59
vote up 1 vote down

My favorite solution to shuffling stuff is use an N*log N sort and pass it a sort predicate that returns a random result. It has the nice feature that is can be done with a minimum of new code using building blocks that most languages have handy in even the most striped versions.

link|flag
On the other hand a shuffle is only O(n) and is only about 5 lines of code, as shown in other answers. (And can be done just once with generics very easily.) – Jon Skeet Jan 6 '09 at 20:09
5 lines to 1 line is either not much (only 4 lines) or a lot (80%). Also it's simpler to remember. – BCS Jan 6 '09 at 20:15
And the other advantage is that the sort might leverage something to get good perf on the swaps so for small n it might be faster. – BCS Jan 6 '09 at 20:17

Your Answer

Get an OpenID
or

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