This question is a doubt I have on a comment in this question Recommended way to initialize srand?. The first comment says that srand() should be called only ONCE in an application. Why is it so?
Thanks and Regards
|
This question is a doubt I have on a comment in this question Recommended way to initialize srand?. The first comment says that srand() should be called only ONCE in an application. Why is it so? Thanks and Regards
| ||||
feedback
|
|
That depends on what you are trying to achieve. Randomization is performed as a function that has a starting value, namely the seed. So, for the same seed, you will always get the same sequence of values. If you try to set the seed every time you need a random value, and the seed is the same number, you will always get the same "random" value. Seed is usually taken from the current time, which are the seconds, as in To avoid this problem, srand is set only once per application, because it is doubtful that two of the application instances will be run in the same second, so each instance will then have a different sequence of random numbers. However, there is a slight possibility that you will run your app (especially if it's a short one, or a command line tool or something like that) many times in a second, then you will have to resort to some other way of choosing a seed (unless the same sequence in different application instances is ok by you). But like I said, that depends on your application context of usage. Also, you may want to try to increase the precision to microseconds (minimizing the chance of the same seed), requires (
| ||||
feedback
|
|
The reason is that For example you could do:
and then if you call that function repeatedly so that | |||
|
feedback
|
|
srand seeds the pseudorandom number generator. If you call it more than once, you will reseed the RNG. And if you call it with the same argument, it will restart the same sequence. To prove it, if you do something simple like:
you will see the same number printed 100 times. | |||
|
feedback
|
|
Random numbers are actually pseudo random. A seed is set first, from which each call of Generally we use the For example this code from http://linux.die.net/man/3/rand:
static unsigned long next = 1;
/* RAND_MAX assumed to be 32767 */
int myrand(void) {
next = next * 1103515245 + 12345;
return((unsigned)(next/65536) % 32768);
}
void mysrand(unsigned seed) {
next = seed;
}
The internal state Look at the But depending on your needs you can set the seed to some certain value to generate the same "random sequence" each run, say for some benchmark or others. | |||
|
feedback
|