Please suggest an easiest way to get a random shuffled collection of count 'n' from a collection having 'N' items. where n <= N
|
feedback
|
|
Another option is to use OrderBy and to sort on a GUID value, which you can do so using:
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. | |||||
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:
| |||||||||||||||
feedback
|
|
Shuffle the collection into a random order and take the first | |||||
feedback
|
|
Sorry for ugly code :-), but
| ||||
|
feedback
|
|
This has some issues with "random bias" and I am sure it's not optimal, this is another possibility:
| ||||
|
feedback
|