我知道是伪随机数生成啦你不要再说啦
mt19937
c++11 加入。
定义一个名叫 rd
的随机数生成器(括号内为种子)。
mt19937 rd(std::chrono::system_clock::now().time_since_epoch().count());
mt19937 rd(std::random_device{}());
uniform_int_distribution
定义一个名叫 rand
的整型随机分布(括号内为上下界)。
uniform_int_distribution<int> rand(MN,MX);
- 实数随机分布为
uniform_real_distribution
。 - 不知道尖括号内不填对应类型会发生什么。
- 存在正态分布等其他分布,请百度。
生成固定范围的随机整数
假设定义了如上定义的 rd
和 rand
,使用方法为:
rand(rd)
标签:rand,mt19937,uniform,rd,随机数,distribution,生成
From: https://www.cnblogs.com/BrotherHood/p/16742226.html