在函数中,我想生成范围内的数字列表: (执行程序时,此函数仅被调用一次。)
void DataSet::finalize(double trainPercent, bool genValidData)
{
srand(time(0));
printf("%d\n", rand());
// indices = {0, 1, 2, 3, 4, ..., m_train.size()-1}
vector<size_t> indices(m_train.size());
for (size_t i = 0; i < indices.size(); i++)
indices[i] = i;
random_shuffle(indices.begin(), indices.end());
// Output
for (size_t i = 0; i < 10; i++)
printf("%ld ", indices[i]);
puts("");
}
结果如下:
850577673
246 239 7 102 41 201 288 23 1 237
几秒钟后:
856981140
246 239 7 102 41 201 288 23 1 237
还有更多:
857552578
246 239 7 102 41 201 288 23 1 237
为什么函数rand()
正常工作但是`random_shuffle&#39;不是吗?
答案 0 :(得分:6)
random_shuffle()
实际上未指定使用rand()
,因此srand()
可能不会产生任何影响。如果您想确定,则应使用C ++ 11表单之一,random_shuffle(b, e, RNG)
或shuffle(b, e, uRNG)
。
另一种方法是使用random_shuffle(indices.begin(), indices.end(), rand());
,因为显然您random_shuffle()
的实施没有使用rand()
。