vote up 9 vote down star
1

The question gives all necessary data: what is an efficient algorithm to generate a sequence of K non-repeating integers within a given interval. The trivial algorithm (generating random numbers and, before adding them to the sequence, looking them up to see if they were already there) is very expensive if K is large and near enough to N.

The algorithm provided here seems more complicated than necessary, and requires some implementation. I've just found another algorithm that seems to do the job fine, as long as you know all the relevant parameters, in a single pass.

flag
Wait, if you already found another algorithm, what's the question? – Dark Shikari Oct 1 '08 at 17:22
such a neat algorithm! had to share it with someone - and it seems to be recommended behavior according to the stackoverflow.com/faq: "It's also perfectly fine to ask and answer your own programming question, but pretend you're on Jeopardy – tucuxi Oct 1 '08 at 17:52

10 Answers

vote up 1 vote down

Speed up the trivial algorithm by storing the K numbers in a hashing store. Knowing K before you start takes away all the inefficiency of inserting into a hash map, and you still get the benefit of fast look-up.

link|flag
Yeah, that the way I did it when I needed 10M nonrepeating random numbers for a lottery – axk Oct 1 '08 at 17:27
Not too memory-efficient - need a K-sized auxiliary structure. In time, you need K insertions and N removals. The algorithm I found needs only (at most) K random draws. – tucuxi Oct 1 '08 at 17:39
You don't need an auxiliary structure at all. Just make the map your only structure. You'll always need K insertions to store K items. Why do you need N removals? – Bill the Lizard Oct 1 '08 at 18:05
Inserting into and checking the K-sized data structure isn't where problem with the trivial algo is, it's that as K -> N, your RNG will have a very high probability of generating a number you've already seen before when filling the end of the sequence. You need a hash map, but thats auxilliary. – Greg Rogers Oct 7 '08 at 18:27
vote up 0 vote down

The following code (in C, unknown origin) seems to solve the problem extremely well:

 /* generate N sorted, non-duplicate integers in [0, max[ */
 int *generate(int n, int max) {
    int i, m, a;    
    int *g = (int *)calloc(n, sizeof(int));
    if ( ! g) return 0;

    m = 0;
    for (i=0; i<max; i++) {
        a = random_in_between(0, max - i);
        if (a < n - m) {
            g[m] = i;
            m ++;
        }
    }
    return g;
 }

Does anyone know where I can find more gems like this one?

link|flag
Programming Pearls by Jon Bentley (the pun on "gems" was intentional). :) – Bill the Lizard Oct 1 '08 at 17:30
What does "random_in_between" stands for? – Luis Filipe Oct 1 '08 at 17:30
This algorithm is terribly inefficient for small sample chosen from a large set. Picking 5 integers from a million takes one million calls to rand() instead of 5. – Rafał Dowgird Oct 1 '08 at 17:35
Thanks for the booktitle - I couldn't think of any other way to find it. Luis, random_in_between is for 'number between lo and hi, not including hi'. Praptak, perfectly true. Should have specified 'memory efficiency' versus 'time efficiency'. At least it's guaranteed to finish in bounded time... – tucuxi Oct 1 '08 at 17:56
vote up 0 vote down

Generate an array 0...N filled a[i] = i.

Then shuffle the first K items.

Shuffling:

  • Start J = N-1
  • Pick a random number0...J (say R)
  • swap a[R] with a[J]
  • subtract 1 from J and repeat.

UPDATE: To respond to the comments: To produce, for example, two non-repeating int between 0...10 (K=2, N=10)

  • We start a sorted, non-repeating array: {0,1,2,3,4,5,6,7,8,9}
  • we then shuffle the first (actually last) K elements:

    • First, set J = 9.
    • R = random number 0..9, say R=6
    • Swap A[R] with A[J]. Array is now {0,1,2,3,4,9,6,7,8,5}
    • Subtract 1 from J and repeat (J=8)
    • R = random number 0..8, say R=3
    • Swap A[R] with A[J]. Array is now {0,1,8,3,4,9,6,7,2,5}

We can stop here as we've done K swap, and just take the last K elements of the array.

link|flag
Your approach is fine for generating permutations in [0, N[, but I want numbers in the range [0, K[. For instance, if N=2 and K=10, {5, 9} is a valid output sequence. – tucuxi Oct 1 '08 at 17:34
Then generate 0 .. K, and then remove numbers randomly until you have N numbers. – Dark Shikari Oct 1 '08 at 17:37
vote up -1 vote down

This is Perl Code. Grep is a filter, and as always I didn't test this code.

@list = grep ($_ % I) == 0, (0..N);
  • I = interval
  • N = Upper Bound

Only get numbers that match your interval via the modulus operator.

@list = grep ($_ % 3) == 0, (0..30);

will return 0, 3, 6, ... 30

This is pseudo Perl code. You may need to tweak it to get it to compile.

link|flag
vote up 1 vote down

The random module from Python library makes it extremely easy and effective:

from random import sample
print sample(xrange(N), K)

sample function returns a list of K unique elements chosen from the given sequence.
xrange is a "list emulator", i.e. it behaves like a list of consecutive numbers without creating it in memory, which makes it super-fast for tasks like this one.

link|flag
vote up 0 vote down

The Reservoir Sampling version is pretty simple:

my $N = 20;
my $k;
my @r;

while(<>) {
  if(++$k <= $N) {
    push @r, $_;
  } elsif(rand(1) <= ($N/$k)) {
    $r[rand(@r)] = $_;
  }
}

print @r;

That's $N randomly selected rows from STDIN. Replace the <>/$_ stuff with something else if you're not using rows from a file, but it's a pretty straightforward algorithm.

link|flag
vote up 0 vote down

Here's a way to do it in O(N) without extra storage. I'm pretty sure this is not a purely random distribution, but it's probably close enough for many uses.

/* generate N sorted, non-duplicate integers in [0, max[  in O(N))*/
 int *generate(int n, int max) {
    float step,a,v=0;
    int i;    
    int *g = (int *)calloc(n, sizeof(int));
    if ( ! g) return 0;

    for (i=0; i<n; i++) {
        step = (max-v)/(float)(n-i);
        v+ = floating_pt_random_in_between(0.0, step*2.0);
        if ((int)v == g[i-1]){
          v=(int)v+1;             //avoid collisions
        }
        g[i]=v;
    }
    while (g[i]>max) {
      g[i]=max;                   //fix up overflow
      max=g[i--]-1;
    }
    return g;
 }
link|flag
vote up 0 vote down

My solution is C++ oriented, but I'm sure it could be translated to other languages since it's pretty simple.

  • First, generate a linked list with K elements, going from 0 to K
  • Then as long as the list isn't empty, generate a random number between 0 and the size of the vector
  • Take that element, push it into another vector, and remove it from the original list

This solution only involves two loop iterations, and no hash table lookups or anything of the sort. So in actual code:

// Assume K is the highest number in the list
std::vector<int> sorted_list;
std::vector<int> random_list;

for(int i = 0; i < K; ++i) {
    sorted_list.push_back(i);
}

// Loop to K - 1 elements, as this will cause problems when trying to erase
// the first element
while(!sorted_list.size() > 1) {
    int rand_index = rand() % sorted_list.size();
    random_list.push_back(sorted_list.at(rand_index));
    sorted_list.erase(sorted_list.begin() + rand_index);
}                 

// Finally push back the last remaining element to the random list
// The if() statement here is just a sanity check, in case K == 0
if(!sorted_list.empty()) {
    random_list.push_back(sorted_list.at(0));
}
link|flag
vote up 2 vote down

It is actually possible to do this in space proportional to the number of elements selected, rather than the size of the set you're selecting from, regardless of what proportion of the total set you're selecting. You do this by generating a random permutation, then selecting from it like this:

Pick a block cipher, such as TEA or XTEA. Use XOR folding to reduce the block size to the smallest power of two larger than the set you're selecting from. Use the random seed as the key to the cipher. To generate an element n in the permutation, encrypt n with the cipher. If the output number is not in your set, encrypt that. Repeat until the number is inside the set. On average you will have to do less than two encryptions per generated number. This has the added benefit that if your seed is cryptographically secure, so is your entire permutation.

I wrote about this in much more detail here.

link|flag
Nice article. But, doesn't "XOR folding" destroy uniqueness? Sure, x != y implies encipher(x) != encipher(y) for decoding to work, but using e.g. (encipher(x) >> 4) ^ (encipher(x) & MASK) instead could "collapse" different x values to the same code -- so your "permutation" might contain repeats. – j_random_hacker Jan 21 at 12:58
I don't have the theoretical basis to hand, but no, it doesn't destroy the 1-to-1 mapping properties of the block cipher. Xor folding is taken from the TEA cipher - perhaps check references on that for more detail. – Nick Johnson Jan 23 at 19:27
vote up 1 vote down

In The Art of Computer Programming, Volume 2: Seminumerical Algorithms, Third Edition, Knuth describes the following selection sampling algorithm:

Algorithm S (Selection sampling technique). To select n records at random from a set of N, where 0 < n ≤ N.

S1. [Initialize.] Set t ← 0, m ← 0. (During this algorithm, m represents the number of records selected so far, and t is the total number of input records that we have dealt with.)

S2. [Generate U.] Generate a random number U, uniformly distributed between zero and one.

S3. [Test.] If (N – t)U ≥ n – m, go to step S5.

S4. [Select.] Select the next record for the sample, and increase m and t by 1. If m < n, go to step S2; otherwise the sample is complete and the algorithm terminates.

S5. [Skip.] Skip the next record (do not include it in the sample), increase t by 1, and go back to step S2.

An implementation may be easier to follow than the description. Here is a Common Lisp implementation that select n random members from a list:

(defun sample-list (n list &optional (length (length list)) result)
  (cond ((= length 0) result)
        ((< (* length (random 1.0)) n)
         (sample-list (1- n) (cdr list) (1- length)
                      (cons (car list) result)))
        (t (sample-list n (cdr list) (1- length) result))))

And here is an implementation that does not use recursion, and which works with all kinds of sequences:

(defun sample (n sequence)
  (let ((length (length sequence))
        (result (subseq sequence 0 n)))
    (loop
       with m = 0
       for i from 0 and u = (random 1.0)
       do (when (< (* (- length i) u) 
                   (- n m))
            (setf (elt result m) (elt sequence i))
            (incf m))
       until (= m n))
    result))
link|flag
Thanks for the authoritative answer. I have the same requirement, and this is the algo I'm planning to implement. Thanks again. – sundar Nov 4 at 20:24

Your Answer

Get an OpenID
or

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