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?
|
|
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. |
|||||||
|
|
For low numbers like 0...1000, creating a list that contains all the numbers and shuffling it is straight forward. But if the set of numbers to draw from is very large there's another elegant way: You can build a pseudorandom permutation using a key and a cryptographic hash function. See the following C++-ish example pseudo code:
Here, |
||||
|
|
|
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. |
|||
|
|
|
Here's some code I typed up that uses the logic of the first solution. I know this is "language agnostic" but just wanted to present this as an example in C# in case anyone is looking for a quick practical solution.
|
|||
|
|
N Non Repeating random numbers will be of O(n) complexity, as required. |
||||
|
|
|
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..
|
|||||
|
|
This method results appropiate when the limit is high and you only want to generate a few random numbers.
Note that the numbers are generated in ascending order, but you can shuffle then afterwards. |
|||
|
|
|
You could use Format-Preserving Encryption to encrypt a counter. Your counter just goes from 0 upwards, and the encryption uses a key of your choice to turn it into a seemingly random value of whatever radix and width you want, that is guaranteed to never have collisions (because cryptographic algorithms create a 1:1 mapping). Block ciphers normally have a fixed block size of e.g. 64 or 128 bits. But Format-Preserving Encryption allows you to take a standard cipher like AES and make a smaller-width cipher, of whatever radix and width you want. E.g. for the example in this question: radix 10, width 3. AES-FFX is one proposed standard method to achieve this. I've experimented with some basic Python code which is based on the AES-FFX idea, although not fully conformant--see Python code here. It can e.g. encrypt a counter to a random-looking 7-digit decimal number, or a 16-bit number. |
|||
|
|