C++产生指定范围[a,b]内不重复随机数的两种方法
程序员文章站
2022-03-03 10:25:59
...
1. 使用srand()及rand()
这种方法参考了博客https://www.cnblogs.com/afarmer/archive/2011/05/01/2033715.html,里面有更详细的说明。
#include <iostream>
#include <stdlib.h>
#include <time.h>
using namespace std;
int main()
{
srand((unsigned)time(NULL)); //根据不同时间生成不同的种子
int random_num = (rand() % (b-a+1))+ a;
return 0;
}
但是我的需求是多次运行生成随机数的代码,而time返回的值以秒为单位,导致在同一秒钟执行的srand()函数得到的种子也相同。结果怎么看都不像是随机数……
于是我在Stack Overflow上找到了另一种方法!
2. 使用C++11特性random
#include <random>
#include <iostream>
int main()
{
std::random_device dev;
std::mt19937 rng(dev());
std::uniform_int_distribution<std::mt19937::result_type> dist6(1,6); // distribution in range [1, 6] 使用时将[1,6]改为你需要的区间~
std::cout << dist6(rng) << std::endl;
}
这个方案完美解决了我的问题,虽然代码有点看不懂QAQ
上一篇: 树--遍历
下一篇: 前序,中序,后序,层序互求