问题描述
每次我用 rand()
运行程序时,它都会给我相同的结果.
示例:
输出:
每次我运行程序时,它每次都会输出相同的数字.有没有办法解决这个问题?
未设置随机数生成器的种子.
如果你调用 srand((unsigned int)time(NULL))
那么你会得到更多的随机结果:
原因是从 rand()
函数生成的随机数实际上并不是随机的.这简直就是一种转变.维基百科对伪随机数生成器的含义给出了更好的解释:确定性随机位生成器.每次调用 rand()
时,它都会获取生成的种子和/或最后一个随机数(C 标准没有指定使用的算法,尽管 C++11 具有指定一些流行的算法),对这些数字运行数学运算,并返回结果.因此,如果种子状态每次都相同(就像您不使用真正的随机数调用 srand
一样),那么您将始终得到相同的随机"数.
如果您想了解更多,可以阅读以下内容:
http://www.dreamincode.net/forums/topic/24225-random-number-generation-102/
http://www.dreamincode.net/forums/topic/29294-making-pseudo-random-number-generators-more-random/
Every time I run a program with rand()
it gives me the same results.
Example:
Output:
Each time I run the program it outputs the same numbers every time. Is there a way around this?
The seed for the random number generator is not set.
If you call srand((unsigned int)time(NULL))
then you will get more random results:
The reason is that a random number generated from the rand()
function isn't actually random. It simply is a transformation. Wikipedia gives a better explanation of the meaning of pseudorandom number generator: deterministic random bit generator. Every time you call rand()
it takes the seed and/or the last random number(s) generated (the C standard doesn't specify the algorithm used, though C++11 has facilities for specifying some popular algorithms), runs a mathematical operation on those numbers, and returns the result. So if the seed state is the same each time (as it is if you don't call srand
with a truly random number), then you will always get the same 'random' numbers out.
If you want to know more, you can read the following:
http://www.dreamincode.net/forums/topic/24225-random-number-generation-102/
http://www.dreamincode.net/forums/topic/29294-making-pseudo-random-number-generators-more-random/
这篇关于为什么 rand() 每次运行都会产生相同的数字序列?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!