微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

c – 调用srand如何不止一次影响随机性的质量?

comment,其中指出:

srand(time(0)); I would put this line as the first line in main()
instead if calling it multiple times (which will actually lead to less
random numbers
).

……我已经加粗了我遇到问题的路线…重复一般建议,在程序中拨打srand一次.像srand() — why call only once?这样的问题重新迭代,因为time(0)以秒为单位返回当前时间,在同一秒内多次调用srand将产生相同的种子.常见的解决方法是使用毫秒或纳秒.

但是,我不明白为什么这意味着srand应该或者只能被调用一次,或者它如何导致更少的随机数.

cppreference

Generally speaking,the pseudo-random number generator should only be
seeded once,before any calls to rand(),and the start of the program.
It should not be repeatedly seeded,or reseeded every time you wish to generate a new batch of pseudo-random numbers.

phoxissrand() — why call only once?的回答:

Initializing once the initial state with the seed value will generate
enough random numbers as you do not set the internal state with srand,
thus making the numbers more probable to be random.

也许他们只是使用不精确的语言,没有一个解释似乎解释了为什么多次调用srand是坏的(除了生成相同的随机数序列)或它如何影响数字的“随机性”.有人可以为我清楚这一点吗?

解决方法

std :: time(0)函数以秒为单位返回时间.

问题是如果你每次要求一个随机数std时调用std :: srand(),那么计算机速度很快,std :: time(0)函数调用std :: srand()之间不会改变: :srand()将继续被重置以产生相同的数字序列,直到std :: time()函数返回不同的时间(一秒后).

在一秒钟内,您最终可以生成相同数量的数百万次!这不是很随机.

原文地址:https://www.jb51.cc/c/114888.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐