Avoiding Repeated seed generation using srand()

后端 未结 4 645
悲哀的现实
悲哀的现实 2021-01-27 07:06

I have a typical situation where I need to generate a batch of random numbers. I have used a loop which generates 100 random numbers on each pass:

for(int i=0; i         


        
4条回答
  •  逝去的感伤
    2021-01-27 08:00

    You can use the random generator to generate a new seed.

    For example:

    srand((unsigned int)rand());
    

    And use srand(time(NULL)) only once before the loop. But as suggested in another answer, you might as well drop the whole srand inside the loop as well.

提交回复
热议问题