Generating shuffled range using a PRNG rather than shuffling - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T01:25:49Zhttp://stackoverflow.com/feeds/question/464476http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/464476/generating-shuffled-range-using-a-prng-rather-than-shuffling5Generating shuffled range using a PRNG rather than shufflingBarry Kelly2009-01-21T08:49:04Z2009-02-05T12:42:19Z
<p>Is there any known algorithm that can generate a shuffled range [0..n) in linear time and constant space (when output produced iteratively), given an arbitrary seed value?</p>
<p>Assume n may be large, e.g. in the many millions, so a requirement to potentially produce every possible permutation is not required, not least because it's infeasible (the seed value space would need to be huge). This is also the reason for a requirement of constant space. (So, I'm specifically not looking for an array-shuffling algorithm, as that requires that the range is stored in an array of length n, and so would use linear space.)</p>
<p>I'm aware of <a href="http://stackoverflow.com/questions/162606/iterating-shuffled-0-n-without-arrays">question 162606</a>, but it doesn't present an answer to this particular question - the mappings from permutation indexes to permutations given in that question would require a huge seed value space.</p>
<p>Ideally, it would act like a <a href="http://en.wikipedia.org/wiki/Linear_congruential_generator" rel="nofollow">LCG</a> with a period and range of <code>n</code>, but the art of selecting <code>a</code> and <code>c</code> for an LCG is subtle. Simply satisfying the constraints for <code>a</code> and <code>c</code> in a full period LCG may satisfy my requirements, but I am wondering if there are any better ideas out there.</p>
http://stackoverflow.com/questions/464476/generating-shuffled-range-using-a-prng-rather-than-shuffling/465473#4654732Answer by Jason S for Generating shuffled range using a PRNG rather than shufflingJason S2009-01-21T14:14:05Z2009-01-21T14:14:05Z<p>Sounds like you want an algorithm which is guaranteed to produce a cycle from 0 to n-1 without any repeats. There are almost certainly a whole bunch of these depending on your requirements; <a href="http://en.wikipedia.org/wiki/Group_theory" rel="nofollow">group theory</a> would be the most helpful branch of mathematics if you want to delve into the theory behind it.</p>
<p>If you want fast and don't care about predictability/security/statistical patterns, an LCG is probably the simplest approach. The wikipedia page you linked to contains this (fairly simple) set of requirements:</p>
<blockquote>
<p>The period of a general LCG is at most
m, and for some choices of a much less
than that. The LCG will have a full
period if and only if:</p>
<ol>
<li>c and m are relatively prime,</li>
<li>a - 1 is divisible by all prime factors of m</li>
<li>a - 1 is a multiple of 4 if m is a multiple of 4</li>
</ol>
</blockquote>
<p>Alternatively, you could choose a period N >= n, where N is the smallest value that has convenient numerical properties, and just discard any values produced between n and N-1. For example, the lowest N = 2<sup>k</sup> - 1 >= n would let you use <a href="http://en.wikipedia.org/wiki/LFSR" rel="nofollow">linear feedback shift registers</a> (LFSR). Or find your favorite cryptographic algorithm (RSA, AES, DES, whatever) and given a particular key, figure out the space N of numbers it permutes, and for each step apply encryption once.</p>
<p>If n is small but you want the security to be high, that's probably the trickiest case, as any sequence S is likely to have a period N much higher than n, but is also nontrivial to derive a nonrepeating sequence of numbers with a shorter period than N. (e.g. if you could take the output of S mod n and guarantee nonrepeating sequence of numbers, that would give information about S that an attacker might use)</p>
http://stackoverflow.com/questions/464476/generating-shuffled-range-using-a-prng-rather-than-shuffling/467767#4677672Answer by FryGuy for Generating shuffled range using a PRNG rather than shufflingFryGuy2009-01-22T01:32:59Z2009-01-22T01:32:59Z<p>Based on <a href="http://stackoverflow.com/questions/464476/generating-shuffled-range-using-a-prng-rather-than-shuffling#465473">Jason's answer</a>, I've made a simple straightforward implementation in C#. Find the next largest power of two greater than N. This makes it trivial to generate a and c, since c needs to be relatively prime (meaning it can't be divisible by 2, aka odd), and (a-1) needs to be divisible by 2, and (a-1) needs to be divisible by 4. Statistically, it should take 1-2 congruences to generate the next number (since 2N >= M >= N).</p>
<pre><code>class Program
{
IEnumerable<int> GenerateSequence(int N)
{
Random r = new Random();
int M = NextLargestPowerOfTwo(N);
int c = r.Next(M / 2) * 2 + 1; // make c any odd number between 0 and M
int a = r.Next(M / 4) * 4 + 1; // M = 2^m, so make (a-1) divisible by all prime factors, and 4
int start = r.Next(M);
int x = start;
do
{
x = (a * x + c) % M;
if (x < N)
yield return x;
} while (x != start);
}
int NextLargestPowerOfTwo(int n)
{
n |= (n >> 1);
n |= (n >> 2);
n |= (n >> 4);
n |= (n >> 8);
n |= (n >> 16);
return (n + 1);
}
static void Main(string[] args)
{
Program p = new Program();
foreach (int n in p.GenerateSequence(1000))
{
Console.WriteLine(n);
}
Console.ReadKey();
}
}
</code></pre>
http://stackoverflow.com/questions/464476/generating-shuffled-range-using-a-prng-rather-than-shuffling/474175#4741751Answer by Nick Johnson for Generating shuffled range using a PRNG rather than shufflingNick Johnson2009-01-23T19:33:35Z2009-01-23T19:33:35Z<p>See my article on <a href="http://blog.notdot.net/2007/9/Damn-Cool-Algorithms-Part-2-Secure-permutations-with-block-ciphers" rel="nofollow">secure permutations with block ciphers</a> for one way to do it.</p>
http://stackoverflow.com/questions/464476/generating-shuffled-range-using-a-prng-rather-than-shuffling/515755#5157550Answer by erikkallen for Generating shuffled range using a PRNG rather than shufflingerikkallen2009-02-05T12:42:19Z2009-02-05T12:42:19Z<p>Look into Linear Feedback Shift Registers, they can be used for exactly this.
The short way of explaining them is that you start with a seed and then iterate using the formula</p>
<pre><code>x = (x << 1) | f(x)
</code></pre>
<p>where f(x) can only return 0 or 1.</p>
<p>If you choose a good function <code>f</code>, x will cycle through all values between 1 and 2^n-1 (where n is some number), in a good, pseudo-random way.
Example functions can be found <a href="http://www.xilinx.com/support/documentation/application_notes/xapp052.pdf" rel="nofollow">here</a>, e.g. for 63 values you can use</p>
<pre><code>f(x) = ((x >> 6) & 1) ^ ((x >> 5) & 1)
</code></pre>