Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I remember to see a method seems to buble sort, where can unsort items.

For example, I was trying to show randomize items from 0 to 10, using Random class. But I guess is not the best choice.

So, I guess creating an extension for IEnumberable, List or array, whatever can be a best way.

share|improve this question
What is your use case ? – ken2k Jan 19 '12 at 21:59
possible duplicate of Optimal LINQ query to get a random sub collection - Shuffle – Muad'Dib Jan 19 '12 at 22:01
what do you mean by items from 0 to 10? the first 10 items? a list of size 10? – Muad'Dib Jan 19 '12 at 22:03
Yes, I mean, to have an array with the elementos { 0, 1, 2, ... 9 } – Darf Zon Jan 19 '12 at 22:28

5 Answers

up vote 13 down vote accepted

You are looking for a shuffle, a good example for randomized re-ordering is the Fisher-Yates Shuffle.

Here's an implementation by Jon Skeet in C#.

share|improve this answer

The algorithm that looks like bubble sort would be:

for i= 0:(len(x)-1):
    j = random(i,len(x)-1)
    swap(x[i],x[j])

Assume that random(a,b) returns a random integer c such that a<=c<=b.

And, this algorithm is called "Fisher Yates Shuffle".

FWIW, you cannot "truly" shuffle a big array with the standard inbuilt random number generators. A 21-item shuffle has a entropy of 65 bits, where as most RNGs are of 64 bits or 32 bits.

share|improve this answer
1  
It would probably help if you mention that this is the Fisher-Yates shuffle. – Nick Johnson Jan 19 '12 at 23:24

This will give you a random values from 0 to 10 (including 10):

int[] randomNumbers = Shuffle(Enumerable.Range(0, 11), new Random()).ToArray(); 

public static IEnumerable<T> Shuffle<T>(this IEnumerable<T> source, Random random)
{
    T[] list = source.ToArray();
    int count = list.Length;

    while (count > 1)
    {
        int index = random.Next(count--);
        T temp = list[index];
        list[index] = list[count];
        list[count] = temp;
    }
    return list;
}
share|improve this answer
It's not 'basically' Fisher-Yates, it's random selection from a list. About all it has in common is that it's fair and unbiased. It's also O(n^2) runtime. – Nick Johnson Jan 19 '12 at 23:23
Why on earth are you seeding the random class with the time in such a bizarre manner? The random class automatically seeds itself with the current time. – Eric Lippert Jan 19 '12 at 23:26
And Nick is of course correct; this is extraordinarily inefficient if the list is large. – Eric Lippert Jan 19 '12 at 23:27
Fisher-Yates is select numbers from a hat, as they are removed, so does the numbers remaining shrink. By the way, the OP doesn't require Fisher-Yates, I was just giving credit where I thought credit was due, it doesn't deserve a -1. OP just wants random numbers from 0 to 10. – Chuck Savage Jan 19 '12 at 23:29
3  
Chuck, all I think you have proven is that you shouldn't create Random instances inside loops. 10 repeated sequences versus 40, you shouldn't want any unless you are actually testing the repeatable results of PRNGs. The second thing you may have proven is that your version was slower, because it gets out of the realm of repeats in a lower number of iterations. – user414076 Jan 20 '12 at 0:03
show 4 more comments

you can use linq...

var result = Enumerable.Range(0,10).OrderBy( n=> Guid.NewGuid() )
share|improve this answer
Except that LINQ's OrderBy/ThenBy uses Quicksort under the hood, give it O( n log n ) performance (average case), not to mention requiring additional space. The "standard" shuffle algorithm is O(n)and requires no additional space. – Nicholas Carey Jan 19 '12 at 22:33
1  
No, Never use this. blogs.msdn.com/b/ericlippert/archive/2011/01/31/… – L.B Jan 19 '12 at 22:36
@L.B, OrderBy is stable, it doesn't suffer from the same drawback as the Sort method on lists. For a quick one-off shuffle over a small sequence, using OrderBy isn't terrible, but a better algorithm will certainly be more scalable. – user414076 Jan 19 '12 at 23:04
3  
This is a terribly bad idea. Guids are not guaranteed to be random, they are guaranteed to be unique. Use guids to make unique identifiers; use them for nothing else. Guids are not sort keys. – Eric Lippert Jan 19 '12 at 23:25
And of course that's a valid point on Guids. "Right tools for right jobs" wins again. – user414076 Jan 19 '12 at 23:34

Interesting problems, I propose to leave work linq:

IEnumerable<int> list = new List<int> { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
Random rnd = new Random();
list = list.Select(i => new { value = i, rank = rnd.Next(list.Count()) }).OrderBy(n => n.rank).Select(n => n.value);
share|improve this answer
1  
What's special about 999? – Eric Lippert Jan 19 '12 at 23:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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