gpt4 book ai didi

c++ - 使用 rand() 洗牌但没有洗牌

转载 作者:太空狗 更新时间:2023-10-29 23:41:16 26 4
gpt4 key购买 nike

我正在尝试使用 rand() 函数洗牌,但出于某种原因,当我尝试查看洗牌后的牌是什么样子时,它完全没有洗牌。我不确定我缺少什么,所以非常感谢任何帮助。

void Deck::Shuffle()
{


for (int j = 0; j <= 51; j++)
{
srand(time(0));
int i = 1 + rand()%52;
int k = 1 + rand()%52;

Card temp = theDeck[i];
theDeck[i] = theDeck[k];
theDeck[k]= temp;
}
}

编辑:谢谢大家的帮助。我已将代码修复为现在可以阅读。

 void Deck::Shuffle()
{
srand(time(0));

for (int j = 0; j <= 51; j++)
{

int i = 1 + rand()%52;
int k = 1 + rand()%52;

Card temp = theDeck[i];
theDeck[i] = theDeck[k];
theDeck[k]= temp;
}
}

最佳答案

srand 每次程序执行时只应调用一次,而不是每次调用 rand 时。由于当今计算机的速度,您的循环运行得如此之快,以至于您可能每次都获得相同的随机数,因为您不断使用相同的种子(时间,可能不会改变)重置随机数生成器完全通过你的执行)。解决这个问题。

更新:你的修复更好,但更好的是:

int main()
{
srand(time(0));

// the rest of your program here.
}

关于c++ - 使用 rand() 洗牌但没有洗牌,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12328369/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com