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?
|
12
|
|||||||||||||
|
|
|
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:
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:
After 11 iterations, all numbers in the array have been selected, max == 0, and the array elements are shuffled:
At this point, max can be reset to 10 and the process can continue. |
||||||||||
|
|
|
You can do this:
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). |
||||||||||
|
|
|
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. |
||||||||||
|
|
|
You could use A Linear Congruential Generator. Where |
||
|
|
|
|
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. |
|||
|
|
|
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. |
||
|
|
|
|
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..
|
||
|
|
