Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Just wondering if you could confirm that the following code is valid and advise if there are better alternatives to it?

I am attempting to generate a collection of distinct random numbers between 1 and 100000.

Random rand = new Random();
List<Int32> result = new List<Int32>();
for (Int32 i = 0; i < 300; i++)
{
    Int32 curValue = rand.Next(1, 100000);
    while (result.Exists(value => value == curValue))
    {
        curValue = rand.Next(1, 100000);
    }
    result.Add(curValue);
} 
share|improve this question
It's one thing to prove whether the numbers are distinct, random on the other hand... – Corey Sunwold Apr 6 '11 at 5:15
lol, I was just about to add quotes around random. – Maxim Gershkovich Apr 6 '11 at 5:16

8 Answers

up vote 2 down vote accepted

Yes, as far as I can tell, the code does exactly what you want.

Looping through the list to check each value is not very efficient. You can put the values in a HashSet<int> to speed up the ckeck.

As the ´HashSet´ doesn't preserve the order of the items, you still need the List though:

Random rand = new Random();
List<int> result = new List<int>();
HashSet<int> check = new HashSet<int>();
for (Int32 i = 0; i < 300; i++) {
    int curValue = rand.Next(1, 100000);
    while (check.Contains(curValue)) {
        curValue = rand.Next(1, 100000);
    }
    result.Add(curValue);
    check.Add(curValue);
}
share|improve this answer
If the range is small, consider using BitArray instead of HashSet. – James Clark Nov 2 '11 at 15:00

Re-use man. Once thing you want to do is a collection of numebers (Enumerable.Range will do), the second thing is shuffling (randomly) those numbers. You can find answer to this problem on SO, and thanks to LINQ solution is beautiful, but maybe not the fastest one, anyway I use it, because I like the beauty of it.

Linq shuffling: http://www.code56.com/2009/02/lets-do-some-shuffling.html (dead link). Very similar implementation: http://csharpsimple.blogspot.com/2012/01/shuffle-in-linq-part-2.html

In short:

var rand = new Random();
        return source.Select(t => new {
                Index = rand.Next(),
                Value = t })
            .OrderBy(p => p.Index)
            .Select(p => p.Value);
share|improve this answer
Looks like the link is dead. – Brant Bobby Feb 19 at 17:48
@BrantBobby, updated. – greenoldman Feb 20 at 12:37
Great idea man, I will use this approach to generate random IDs in SQL Server. – guillegr123 Apr 10 at 17:56

This will do what you want, except that throwing out a number because you've seen it before reduces the entropy (randomness) of the sequence.

share|improve this answer

Not that it would matter much if you just occasionally need 300 numbers, but it would be more efficient to use HashSet that does o(1) lookups rather than o(n) as with the List

Random rand = new Random();
HashSet<int> result = new HashSet<int>();
while (result.Count < 300)
{
    result.Add(rand.Next(1, 1000000));
}
share|improve this answer
The HashSet doesn't preserve the order of the items, so you still need the list. If you read them sequentially from the HashSet, they will not come out in the order they were added, instead the order will be affected by which values were picked. – Guffa Apr 6 '11 at 5:31

If you're willing to take an up-front hit to pre-generate a list of 100,000 ints, this method is very fast:

static IList<int> GetRandoms(int[] sample)
{
    var rand = new Random();
    var result = new int[300];
    var count = sample.Length;

    for (int i = 0; i < 300; i++)
    {
        var index = rand.Next(count);
        result[i] = sample[index];
        sample[index] = sample[--count];
    }
    return result;
}

So you'd call it like this:

var sample = Enumerable.Range(1, 100000).ToArray();
var data = GetRandoms(sample);
share|improve this answer
This algorithm is wrong: as i increases, count decreases, and the algorithm re-shuffles numbers from the beginning of the array - you should initialize index to rand.Next(count) + i. – Nick Johnson Apr 8 '11 at 4:24
Eh? "i" is the index into the results array - it doesn't have anything to do with the "sample" array from which I'm pulling the numbers. – Matt Hamilton Apr 8 '11 at 4:33
Sorry, you're right. I thought you were doing an in-place shuffle, but you're not. – Nick Johnson Apr 11 '11 at 0:36
@Nick No worries. That's why it's so fast - it's just swapping values in a pre-allocated array. – Matt Hamilton Apr 11 '11 at 2:44
Right, but an in-place one wouldn't be any slower, and would save on allocating the result array. :) – Nick Johnson Apr 11 '11 at 2:47

Changed my sloppy answer!

var result = new HashSet<int>();
var random = new Random();
var seq = Enumerable.Range(1, 30).GetEnumerator();
while(seq.MoveNext()) {
  while(!result.Add(random.Next(1, 100000)));
}
share|improve this answer
No, it won't. It will produce the same set of random numbers each time it's run, and there is no guarantee that there won't be duplicates. – Guffa Apr 6 '11 at 5:33
Hmm - I don't think you can guarantee that Random(1).Next will return a different number than Random(158).Next. – Jeff Meatball Yang Apr 6 '11 at 5:45

Your version will work, so what I am suggesting is just a fun alternative:

List<Int32> result = new List<Int32>();
Queue<int> working = new Queue<int>(new int[2] {1, 100000});
Random rand = new Random();

while (result.Count < 300) {
    int lower = working.Dequeue();
    int upper = working.Dequeue();
    int pivot = rand.Next(lower,upper);
    result.Add(pivot);
    if(lower < pivot) { working.Enqueue(lower); working.Enqueue(pivot); }
    if(pivot+1 < upper) { working.Enqueue(pivot + 1); working.Enqueue(upper); }
}
share|improve this answer

In those cases i always think that you don't really need random numbers. Instead you are more going to shuffle some existing numbers.

So what about taking the range you like with something like var range = Enumerable.Range(1, 100000), shuffle them and take the number of elements you need, by something like range.ToArray().Shuffle().Take(300)?

One implementation of a shuffle algorithm can be found here. I know it is not an extension method, which can be used the way described above, but changing the signature is quite easy.

share|improve this answer

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.