這篇文章將為大家詳細講解有關(guān)c++如何產(chǎn)生隨機數(shù),小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
臨潭網(wǎng)站制作公司哪家好,找創(chuàng)新互聯(lián)公司!從網(wǎng)頁設(shè)計、網(wǎng)站建設(shè)、微信開發(fā)、APP開發(fā)、響應(yīng)式網(wǎng)站開發(fā)等網(wǎng)站項目制作,到程序開發(fā),運營維護。創(chuàng)新互聯(lián)公司于2013年開始到現(xiàn)在10年的時間,我們擁有了豐富的建站經(jīng)驗和運維經(jīng)驗,來保證我們的工作的順利進行。專注于網(wǎng)站建設(shè)就選創(chuàng)新互聯(lián)公司。c庫偽隨機數(shù)發(fā)生器
rand
srand
大多時候用時間產(chǎn)生隨機發(fā)生器的seed
int GetRandomNum(int min, int max,int seed)
{
//srand((unsigned)time(NULL)); //生成seed
srand(seed);
return( rand() % (max - min) + min);
}
c++11 引入的偽隨機數(shù)發(fā)生器.隨機數(shù)抽象成隨機數(shù)引擎和分布兩部分.引擎用來產(chǎn)生隨機數(shù),分布產(chǎn)生特定分布的隨機數(shù)
常用的就是線性均勻分布
uniform_int_distribution
uniform_real_distribution
std::random_device rd;//來產(chǎn)生一個隨機數(shù)當(dāng)作種子
std::uniform_int_distribution<int> uni_dist(0, 9999999); //指定范圍的隨機數(shù)發(fā)生器
std::cout << uni_dist(rd) << std::endl;
還有一些其他發(fā)生器,如 伯努里分布、泊松分布、正態(tài)分布
// ConsoleApplication4.cpp : 定義控制臺應(yīng)用程序的入口點。
//
#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(馬特賽特旋轉(zhuǎn)演算法)
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;
}
關(guān)于“c++如何產(chǎn)生隨機數(shù)”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
文章名稱:c++如何產(chǎn)生隨機數(shù)-創(chuàng)新互聯(lián)
分享網(wǎng)址:http://jinyejixie.com/article42/decohc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供全網(wǎng)營銷推廣、響應(yīng)式網(wǎng)站、小程序開發(fā)、微信小程序、域名注冊、營銷型網(wǎng)站建設(shè)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)