温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

c++如何产生随机数

发布时间:2021-11-23 11:00:40 来源:亿速云 阅读:202 作者:小新 栏目:编程语言

这篇文章将为大家详细讲解有关c++如何产生随机数,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。

c库伪随机数发生器

rand 

srand

大多时候用时间产生随机发生器的seed

int GetRandomNum(int min, int max,int seed)

{

//srand((unsigned)time(NULL)); //生成seed

srand(seed);

return( rand() % (max - min) + min);

}

c++11 引入的伪随机数发生器.随机数抽象成随机数引擎和分布两部分.引擎用来产生随机数,分布产生特定分布的随机数

常用的就是线性均匀分布

uniform_int_distribution 

uniform_real_distribution

std::random_device rd;//来产生一个随机数当作种子

std::uniform_int_distribution<int> uni_dist(0, 9999999); //指定范围的随机数发生器

std::cout << uni_dist(rd) << std::endl;

还有一些其他发生器,如 伯努里分布、泊松分布、正态分布 

// ConsoleApplication4.cpp : 定义控制台应用程序的入口点。

//

#include "stdafx.h"

#include <random>

#include <memory>

#include <iostream>

using namespace std;

class Random {

public:

const static  unsigned int  maxRand = std::random_device::max();

static Random& getInstance()

{

static Random instance;

return instance;

}

unsigned int  getInteger() noexcept {

return (*dist)(rd);

}

unsigned int  GetMTEngineInteger() noexcept {

return (*mtEngine)();

}

uint64_t  GetMTEngine64Integer() noexcept {

return (*mtEngine64)();

}

unsigned int  GetRand0Integer() noexcept {

return (*rand0Engine)();

}

auto GetRanlux48Integer() noexcept ->decltype(auto) {

return (*ranlux48Engine)();

}

private:

Random() noexcept {

mtEngine = std::make_shared<std::mt19937>(rd());

mtEngine64 = std::make_shared<std::mt19937_64>(rd());

dist = std::make_shared<std::uniform_int_distribution< unsigned int >>(std::uniform_int_distribution< unsigned int >(0, maxRand));

rand0Engine = make_shared<std::minstd_rand0>(rd());

ranlux48Engine = make_shared<std::ranlux48>(rd());

}

std::random_device rd;

std::shared_ptr<std::mt19937> mtEngine;//32-bit Mersenne Twister by Matsumoto and Nishimura, 1998

std::shared_ptr<std::mt19937_64> mtEngine64; //64-bit Mersenne Twister by Matsumoto and Nishimura, 2000(马特赛特旋转演算法)

std::shared_ptr<std::minstd_rand0> rand0Engine;

std::shared_ptr<std::ranlux48> ranlux48Engine;

std::shared_ptr<std::uniform_int_distribution< unsigned int > > dist;

};

int main()

{

cout << Random::getInstance().GetMTEngineInteger() << endl;

cout << Random::getInstance().GetMTEngine64Integer() << endl;

cout << Random::getInstance().GetRand0Integer() << endl;

cout << Random::getInstance().GetRanlux48Integer() << endl;

cout << Random::getInstance().getInteger() << endl;

return 0;

}

关于“c++如何产生随机数”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

c++
AI