中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

c++產生隨機數的方法

發布時間:2020-06-11 17:36:47 來源:億速云 閱讀:283 作者:鴿子 欄目:編程語言

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;

}

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

搜索| 阿拉善左旗| 邵武市| 札达县| 南召县| 宁武县| 宜宾县| 阜宁县| 眉山市| 新营市| 尉氏县| 邛崃市| 舟曲县| 共和县| 喀什市| 尼勒克县| 苏尼特左旗| 隆回县| 乐业县| 阳江市| 德阳市| 瓮安县| 特克斯县| 嵩明县| 德保县| 江源县| 廊坊市| 奉节县| 新河县| 马尔康县| 满洲里市| 中西区| 桐庐县| 当雄县| 盐山县| 常德市| 阳高县| 含山县| 新龙县| 区。| 礼泉县|