Unique random numbers in O(1)? - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T16:07:20Zhttp://stackoverflow.com/feeds/question/196017http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/196017/unique-random-numbers-in-o117Unique random numbers in O(1)?dicroce2008-10-12T20:34:22Z2009-01-22T16:38:10Z
<p>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?</p>
http://stackoverflow.com/questions/196017/unique-random-numbers-in-o1/196022#19602239Answer by Chris Jester-Young for Unique random numbers in O(1)?Chris Jester-Young2008-10-12T20:37:24Z2008-10-12T22:16:40Z<p>You can do this:</p>
<ol>
<li>Create a list, 0..1000.</li>
<li>Shuffle the list. (See <a href="http://en.wikipedia.org/wiki/Fisher-Yates_shuffle" rel="nofollow">Fisher-Yates shuffle</a> for a good way to do this.)</li>
<li>Return numbers in order from the shuffled list.</li>
</ol>
<p>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).</p>
http://stackoverflow.com/questions/196017/unique-random-numbers-in-o1/196024#1960241Answer by Gamecat for Unique random numbers in O(1)?Gamecat2008-10-12T20:38:25Z2008-10-12T20:38:25Z<p>Another posibility:</p>
<p>You can use an array of flags. And take the next one when it;s already chosen.</p>
<p>But, beware after 1000 calls, the function will never end so you must make a safeguard.</p>
http://stackoverflow.com/questions/196017/unique-random-numbers-in-o1/196065#19606541Answer by Robert Gamble for Unique random numbers in O(1)?Robert Gamble2008-10-12T20:57:02Z2009-01-03T18:29:15Z<p>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.</p>
<p><strong>Update:</strong>
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):</p>
<p>Array starts off with 11 elements initialized to array[n] = n, max starts off at 10:</p>
<pre><code>+--+--+--+--+--+--+--+--+--+--+--+
| 0| 1| 2| 3| 4| 5| 6| 7| 8| 9|10|
+--+--+--+--+--+--+--+--+--+--+--+
^
max
</code></pre>
<p>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:</p>
<pre><code>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|
+--+--+--+--+--+--+--+--+--+--+--+
...
</code></pre>
<p>After 11 iterations, all numbers in the array have been selected, max == 0, and the array elements are shuffled:</p>
<pre><code>+--+--+--+--+--+--+--+--+--+--+--+
| 4|10| 8| 6| 2| 0| 9| 5| 1| 7| 3|
+--+--+--+--+--+--+--+--+--+--+--+
</code></pre>
<p>At this point, max can be reset to 10 and the process can continue.</p>
http://stackoverflow.com/questions/196017/unique-random-numbers-in-o1/196164#1961645Answer by Paul de Vrieze for Unique random numbers in O(1)?Paul de Vrieze2008-10-12T21:46:14Z2008-10-12T21:46:14Z<p>You could use A <a href="http://en.wikipedia.org/wiki/Linear_congruential_generator" rel="nofollow">Linear Congruential Generator</a>. Where <code>m</code> (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).</p>
http://stackoverflow.com/questions/196017/unique-random-numbers-in-o1/202225#20222510Answer by plinth for Unique random numbers in O(1)?plinth2008-10-14T18:14:59Z2008-10-14T18:14:59Z<p>Use a <a href="http://en.wikipedia.org/wiki/Linear_feedback_shift_register" rel="nofollow">Maximal Linear Feedback Shift Register</a>.</p>
<p>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.</p>
http://stackoverflow.com/questions/196017/unique-random-numbers-in-o1/408677#4086773Answer by Max for Unique random numbers in O(1)?Max2009-01-03T05:55:29Z2009-01-03T06:04:48Z<p>You don't even need an array to solve this one.</p>
<p>You need a bitmask and a counter.</p>
<p>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.)</p>
<p>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.</p>
http://stackoverflow.com/questions/196017/unique-random-numbers-in-o1/408858#4088580Answer by Peter Rounce for Unique random numbers in O(1)?Peter Rounce2009-01-03T10:25:23Z2009-01-03T10:25:23Z<p>You could use a good <a href="http://en.wikipedia.org/wiki/Pseudorandom_number_generator" rel="nofollow">pseudo-random number generator</a> with 10 bits and throw away 1001 to 1023 leaving 0 to 1000.</p>
<p>From <a href="http://en.wikipedia.org/wiki/Linear_feedback_shift_register" rel="nofollow">here</a> we get the design for a 10 bit PRNG..</p>
<ul>
<li><p>10 bits, feedback polynomial x^10 + x^7 + 1 (period 1023)</p></li>
<li><p>use a Galois LFSR to get fast code</p></li>
</ul>