I have a list of objects and I want to reorder them randomly on each request. What is the best way of doing this?
|
5
|
|||
|
|
|
How about some kind of Knuth-Fisher-Yates shuffle algorithm ?
Code taken from Coding Horror. This is also a recommended reading on how people often do this wrong. |
||
|
|
Try this code here It uses the IComparer.Compare It will be a good practice if you do the function using generics |
|||
|
|
|
|
Check out this cool Linq way of doing it:
Populate a list:
Then sort:
|
||||||||||
|
|
|
I would create a new List and filling it with items that are randomly selected and removed from the original List. |
||
|
|
|
|
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: |
||
|
|
|
You could use the Fisher-Yates shuffle algorithm which runs in linear-time. |
||||||
|
|
|
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. |
||||||
|
