gpt4 book ai didi

c++ - 如何在 C++ 中生成 4 个不同的随机数

转载 作者:行者123 更新时间:2023-11-27 22:34:38 25 4
gpt4 key购买 nike

我正在根据 Bjarne Stroustrup 的“使用 C++ 的编程原理和实践”一书(第 130 页,练习 13)进行 Bulls and Cows 作业,我希望程序生成 0 到 9 范围内的四个不同整数(例如,1234,但不是 1122)

我创建了一个 vector 来存储数字和一个生成 4 个数字并将它们添加到 vector 的函数,但数字可能相同,我无法将数字返回给主函数

#include "../..//..//std_lib_facilities.h"

vector<int> gen4Nums(vector<int> secNum)
{
random_device rd; // obtain a random number from hardware
mt19937 eng(rd()); // seed the generator
uniform_int_distribution<> distr(0, 9); // define the range

secNum.clear();
for (int i = 0; i < 4; i++)
{
secNum.push_back(distr(eng));
cout << secNum[i];
}
return secNum;
}

int main()
{
vector<int> secNum;
gen4Nums(secNum);
}

我希望向主函数返回 4 个不同的随机数

最佳答案

如果您像这样更改代码,您可以确保在结果中获得不同的随机数:

#include <vector>
#include <random>
#include <algorithm>

using namespace std;

vector<int> gen4Nums()
{
vector<int> result;
random_device rd; // obtain a random number from hardware
mt19937 eng(rd()); // seed the generator
uniform_int_distribution<> distr(0, 9); // define the range

int i = 0;
while(i < 4) { // loop until you have collected the sufficient number of results
int randVal = distr(eng);
if(std::find(std::begin(result),std::end(result),randVal) == std::end(result)) {
// ^^^^^^^^^^^^ The above part is essential, only add random numbers to the result
// which aren't yet contained.
result.push_back(randVal);
cout << result[i];
++i;
}
}
return result;
}

int main() {
vector<int> secNum = gen4Nums();
}

关于c++ - 如何在 C++ 中生成 4 个不同的随机数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56410042/

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