vote up 2 vote down star

I'm in need of a C++ (pseudo, i don't care) random number generator that can get me different numbers every time I call the function. This could be simply the way I seed it, maybe there's a better method, but every random generator I've got doesn't generate a new number every time it's called. I've got a need to get several random numbers per second on occasion, and any RNG i plug in tends to get the same number several times in a row. Of course, I know why, because it's seeded by the second, so it only generates a new number every second, but I need to, somehow, get a new number on every call. Can anyone point me in the right direction?

flag

62% accept rate

5 Answers

vote up 13 vote down check

Sounds like you do it like this:

int get_rand() {
    srand(time(0));
    return rand();
}

Which would explain why you get the same number within one second. But you have to do it like this:

int get_rand() {
    return rand();
}

And call srand once at program startup.

link|flag
litb, what would I do without you! Thanks a lot, I had a feeling it was another 'shouldda known better' programmer-inflicted error! – Cyprus106 Jan 6 at 23:40
vote up 2 vote down

Boost.Random has a variety of pretty good random number generators.

link|flag
vote up 1 vote down

If you're generating a large number of random numbers, you could try an XORShift generator. For longs (8 bit):

// initial setup
unsigned long x = ... init from time etc ...
// each time we want a random number in 'x':
x ^= x << 21;
x ^= x >> 35;
x ^= x << 4;
link|flag
vote up 4 vote down

You should only seed the PRNG once.

link|flag
vote up 7 vote down

You only need to seed the generator once with srand() when you start, after that just call the rand() function. If you seed the generator twice with the same seed, you'll get the same value back each time.

link|flag

Your Answer

Get an OpenID
or

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