gpt4 book ai didi

c++ - 随机函数不断得到相同的结果

转载 作者:行者123 更新时间:2023-11-28 02:26:00 26 4
gpt4 key购买 nike

<分区>

我正在编写一个程序来随机模拟 Knight 的巡回演出。 (有关其含义,请参见维基百科:http://en.wikipedia.org/wiki/Knight%27s_tour)首先,我创建了一个国际象棋对象,它基本上只是一个 8*8 数组,其中包含数字以指示马的位置。我创建了一个国际象棋对象并为骑士随机分配了一个位置。然后,我随机移动骑士,直到不再有合法移动并返回执行的移动次数。

int runTour ()
{
srand (time(NULL));

Chess knight(rand()%8, rand()%8); //Initialize random chess object.
knight.printBoard(); //Prints the board before moving
int moveNumber = 0; //A number from 0 to 7 that dictates how the knight moves
int counter = 0;

while (moveNumber != -1) //A moveNumber of -1 means there is no more legal move
{
moveNumber = knight.findRandMove(knight.getRow(), knight.getColumn()); //findRandMove is a function that returns a legal random move for the knight based on its position. It works perfectly.
knight.move(moveNumber); //move is a function that moves the knight
counter ++;
}
knight.printBoard(); // Returns board when move is exhausted
return counter; //Returns number of moves performed.

有趣的是,虽然它从运行到运行完全随机地运行,但它在同一次运行中不断输出相同的东西。例如,这是 main() 函数:

int main(){
runTour();
runTour();
return 0;
}

并且在 BOTH runTour() 中它输出:(其中 0 表示未到达的位置,1 表示马的当前位置,以及到达的 9 个位置)

0 0 0 0 0 0 0 0 
0 0 0 0 0 0 0 0
0 0 0 0 0 1 0 0
0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0

0 0 0 0 9 0 0 0
0 9 9 0 0 0 9 0
0 0 0 0 0 9 9 0
9 0 9 9 9 9 0 1
0 0 9 9 9 9 9 9
0 9 9 9 9 0 9 0
9 0 0 0 9 9 9 9
0 0 9 0 9 9 0 9

当我再次运行它时,两个 runTour 输出:

0 0 0 0 0 0 0 0 
0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 1
0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0

0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0
0 0 0 0 0 0 9 9
0 9 0 0 9 9 9 0
0 0 9 9 9 9 9 9
1 0 9 0 9 9 0 9

因此随机函数在不同的运行中是随机的,但在每次运行中都是相同的。为什么会这样?如何修改代码,使 runTour() 在调用时可以有不同的表现?非常感谢您阅读这个笨拙的问题。

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