vote up 17 vote down star
12

The problem is this: I'd like to generate unique random numbers between 0 and 1000 that never repeat (I.E. 6 doesn't come out twice), but that doesn't resort to something like an O(N) search of previous values to do it. Is this possible?

flag

Nice example btw, I thought WTF wat has IE6 to do with this ;-). – Gamecat Oct 12 '08 at 20:39
Isn't this the same question as stackoverflow.com/questions/158716/… – jk Oct 12 '08 at 21:03
2  
“I.E. 6 doesn't come out twice” – right, but there are the service packs. scnr – Konrad Rudolph Oct 14 '08 at 18:14
You know, I didn't do that on purpose... Thank GOD IE 6 didn't come out twice! Once is definitely enough... – dicroce Jan 3 at 19:32
haha @ comments about IE 6 – Filip Ekberg Jan 9 at 21:48
show 1 more comment

7 Answers

vote up 41 vote down check

Initialize an array of 1001 integers with the values 0-1000 and set a variable, max, to the current max index of the array (starting with 1000). Pick a random number, r, between 0 and max, swap the number at the position r with the number at position max and return the number now at position max. Decrement max by 1 and continue. When max is 0, set max back to the size of the array - 1 and start again without the need to reinitialize the array.

Update: Although I came up with this method on my own when I answered the question, after some research I realize this is a modified version of Fisher-Yates known as Durstenfeld-Fisher-Yates or Knuth-Fisher-Yates. Since the description may be a little difficult to follow, I have provided an example below (using 11 elements instead of 1001):

Array starts off with 11 elements initialized to array[n] = n, max starts off at 10:

+--+--+--+--+--+--+--+--+--+--+--+
| 0| 1| 2| 3| 4| 5| 6| 7| 8| 9|10|
+--+--+--+--+--+--+--+--+--+--+--+
                                ^
                               max

At each iteration, a random number r is selected between 0 and max, array[r] and array[max] are swapped, the new array[max] is returned, and max is decremented:

max = 10, r = 3
           +--------------------+
           v                    v
+--+--+--+--+--+--+--+--+--+--+--+
| 0| 1| 2|10| 4| 5| 6| 7| 8| 9| 3|
+--+--+--+--+--+--+--+--+--+--+--+

max = 9, r = 7
                       +-----+
                       v     v
+--+--+--+--+--+--+--+--+--+--+--+
| 0| 1| 2|10| 4| 5| 6| 9| 8| 7: 3|
+--+--+--+--+--+--+--+--+--+--+--+

max = 8, r = 1
     +--------------------+
     v                    v
+--+--+--+--+--+--+--+--+--+--+--+
| 0| 8| 2|10| 4| 5| 6| 9| 1: 7| 3|
+--+--+--+--+--+--+--+--+--+--+--+

max = 7, r = 5
                 +-----+
                 v     v
+--+--+--+--+--+--+--+--+--+--+--+
| 0| 8| 2|10| 4| 9| 6| 5: 1| 7| 3|
+--+--+--+--+--+--+--+--+--+--+--+

...

After 11 iterations, all numbers in the array have been selected, max == 0, and the array elements are shuffled:

+--+--+--+--+--+--+--+--+--+--+--+
| 4|10| 8| 6| 2| 0| 9| 5| 1| 7| 3|
+--+--+--+--+--+--+--+--+--+--+--+

At this point, max can be reset to 10 and the process can continue.

link|flag
Awesome! I knew there was a way... :) – dicroce Oct 13 '08 at 13:40
If the array doesn't start off shuffled (and not with the naive algorithm; see Jeff's post on shuffling), doesn't this introduce a subtle bias? – Mitch Wheat Jan 3 at 6:09
No bias. This is just a spread-out version of the same algorithm. – recursive Jan 3 at 6:29
@lk: Only Jon Skeet qualifies for "godlike"; this is just "excellently good". – Brent.Longborough Jan 3 at 9:19
Jeff's post on shuffling suggests this will not return good random numbers.. codinghorror.com/blog/archives/… – Peter Rounce Jan 3 at 9:55
show 5 more comments
vote up 0 vote down

You could use a good pseudo-random number generator with 10 bits and throw away 1001 to 1023 leaving 0 to 1000.

From here we get the design for a 10 bit PRNG..

  • 10 bits, feedback polynomial x^10 + x^7 + 1 (period 1023)

  • use a Galois LFSR to get fast code

link|flag
vote up 3 vote down

You don't even need an array to solve this one.

You need a bitmask and a counter.

Initialize the counter to zero and increment it on successive calls. XOR the counter with the bitmask (randomly selected at startup, or fixed) to generate a psuedorandom number. If you can't have numbers that exceed 1000, don't use a bitmask wider than 9 bits. (In other words, the bitmask is an integer not above 511.)

Make sure that when the counter passes 1000, you reset it to zero. At this time you can select another random bitmask — if you like — to produce the same set of numbers in a different order.

link|flag
That would fool fewer people than an LFSR. – starblue Oct 22 at 16:27
vote up 10 vote down

Use a Maximal Linear Feedback Shift Register.

It's implementable in a few lines of C and at runtime does little more than a couple test/branches, a little addition and bit shifting. It's not random, but it fools most people.

link|flag
I can't believe this isn't getting more upvotes. – Max Jan 3 at 9:02
1  
"It's not random, but it fools most people". That applies to all pseudo-random number generators and all feasible answers to this question. But most people won't think about it. So omitting this note would maybe result in more upvotes... – f3lix Mar 18 at 14:43
+1 LFSRs are a very simple and effective solution for many applications. – Steve Melnikoff Mar 29 at 12:31
+1 for using only O(1) memory. – starblue Oct 22 at 16:30
vote up 5 vote down

You could use A Linear Congruential Generator. Where m (the modulus) would be the nearest prime bigger than 1000. When you get a number out of the range, just get the next one. The sequence will only repeat once all elements have occurred, and you don't have to use a table. Be aware of the disadvantages of this generator though (including lack of randomness).

link|flag
vote up 1 vote down

Another posibility:

You can use an array of flags. And take the next one when it;s already chosen.

But, beware after 1000 calls, the function will never end so you must make a safeguard.

link|flag
vote up 39 vote down

You can do this:

  1. Create a list, 0..1000.
  2. Shuffle the list. (See Fisher-Yates shuffle for a good way to do this.)
  3. Return numbers in order from the shuffled list.

So this doesn't require a search of old values each time, but it still requires O(N) for the initial shuffle. But as Nils pointed out in comments, this is amortized O(1).

link|flag
If you use your shuffled list for the first 1000 queries and then re-shuffle you have amortized O(1). – Nils Pipenbrinck Oct 12 '08 at 20:38
Exactly! I'll update the entry to say this. – Chris Jester-Young Oct 12 '08 at 20:39
I disagree that it's amortized. The total algorithm is O(N) because of the shuffling. I guess you could say it's O(.001N) because each value only consumes 1/1000th of a O(N) shuffle, but that's still O(N) (albeit with a tiny coefficient). – Just Some Guy Oct 14 '08 at 18:29
@Just Some Guy N = 1000, so you are saying that it is O(N/N) which is O(1) – Guvante Oct 22 '08 at 8:40
If each insert into the shuffled array is an operation, then after inserting 1 value, you can get 1 random value. 2 for 2 values, and so on, n for n values. It takes n operations to generate the list, so the entire algorithm is O(n). If you need 1,000,000 random values, it will take 1,000,000 ops – Kibbee Jan 3 at 18:45
show 2 more comments

Your Answer

Get an OpenID
or

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