rand() generating the same number – even with srand(time(NULL)) in my main!(rand() 生成相同的数字——即使在我的主要内容中有 srand(time(NULL)) !)
问题描述
所以,我正在尝试创建一个随机向量(想想几何图形,而不是一个可扩展的数组),每次我调用随机向量函数时,我都会得到相同的 x 值,尽管 y 和 z 不同.
So, I'm trying to create a random vector (think geometry, not an expandable array), and every time I call my random vector function I get the same x value, though y and z are different.
int main () {
srand ( (unsigned)time(NULL));
Vector<double> a;
a.randvec();
cout << a << endl;
return 0;
}
使用函数
//random Vector
template <class T>
void Vector<T>::randvec()
{
const int min=-10, max=10;
int randx, randy, randz;
const int bucket_size = RAND_MAX/(max-min);
do randx = (rand()/bucket_size)+min;
while (randx <= min && randx >= max);
x = randx;
do randy = (rand()/bucket_size)+min;
while (randy <= min && randy >= max);
y = randy;
do randz = (rand()/bucket_size)+min;
while (randz <= min && randz >= max);
z = randz;
}
出于某种原因,randx 将始终返回 8,而其他数字似乎完全遵循(伪)随机性.但是,如果我在 randx 之前调用定义,比如兰迪,兰迪将始终返回 8.
For some reason, randx will consistently return 8, whereas the other numbers seem to be following the (pseudo) randomness perfectly. However, if I put the call to define, say, randy before randx, randy will always return 8.
为什么我的第一个随机数总是 8?是我播种不正确吗?
Why is my first random number always 8? Am I seeding incorrectly?
推荐答案
问题是随机数生成器的种子值非常接近 - 程序的每次运行只会改变时间的返回值() 少量 - 可能是 1 秒,甚至可能没有!相当差的标准随机数生成器然后使用这些相似的种子值来生成明显相同的初始随机数.基本上,您需要一个比 time() 更好的初始种子生成器和一个比 rand() 更好的随机数生成器.
The issue is that the random number generator is being seeded with a values that are very close together - each run of the program only changes the return value of time() by a small amount - maybe 1 second, maybe even none! The rather poor standard random number generator then uses these similar seed values to generate apparently identical initial random numbers. Basically, you need a better initial seed generator than time() and a better random number generator than rand().
我认为实际使用的循环算法是从 Accelerated C++ 中提取的,旨在在所需范围内产生更好的数字分布,而不是使用 mod 运算符.但它无法弥补总是(有效地)给予相同的种子.
The actual looping algorithm used is I think lifted from Accelerated C++ and is intended to produce a better spread of numbers over the required range than say using the mod operator would. But it can't compensate for always being (effectively) given the same seed.
这篇关于rand() 生成相同的数字——即使在我的主要内容中有 srand(time(NULL)) !的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:rand() 生成相同的数字——即使在我的主要内容中有 srand(time(NULL)) !


基础教程推荐
- 这个宏可以转换成函数吗? 2022-01-01
- 如何检查GTK+3.0中的小部件类型? 2022-11-30
- 如何在 C++ 中初始化静态常量成员? 2022-01-01
- 静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么? 2021-01-01
- 如何通过C程序打开命令提示符Cmd 2022-12-09
- 如何将 std::pair 的排序 std::list 转换为 std::map 2022-01-01
- C++结构和函数声明。为什么它不能编译? 2022-11-07
- 在 C++ 中计算滚动/移动平均值 2021-01-01
- 常量变量在标题中不起作用 2021-01-01
- 我有静态或动态 boost 库吗? 2021-01-01