std::discrete_distribution
來自 cppreference.com
定義於標頭檔案 <random> |
||
template< class IntType = int > class discrete_distribution; |
(C++11 起) | |
std::discrete_distribution
在區間 [
0,
n)
上生成隨機整數,其中每個整數 i
的機率定義為 wi/S,即第 i
個整數的*權重*除以所有 n
個權重的和。
std::discrete_distribution
滿足 RandomNumberDistribution 的所有要求。
目錄 |
[編輯] 模板引數
IntType | - | 生成器生成的型別。如果這不是 short、int、long、long long、unsigned short、unsigned int、unsigned long 或 unsigned long long 之一,則效果未定義。 |
[編輯] 成員型別
成員型別 | 定義 |
result_type (C++11) |
IntType |
param_type (C++11) |
引數集的型別,參見 RandomNumberDistribution。 |
[編輯] 成員函式
(C++11) |
構造新的分佈 (公共成員函式) |
(C++11) |
重置分佈的內部狀態 (公共成員函式) |
生成 | |
(C++11) |
生成分佈中的下一個隨機數 (公共成員函式) |
特性 | |
獲取機率列表 (公共成員函式) | |
(C++11) |
獲取或設定分佈引數物件 (公共成員函式) |
(C++11) |
返回可能生成的最小值 (公共成員函式) |
(C++11) |
返回可能生成的最大值 (公共成員函式) |
[編輯] 非成員函式
(C++11起)(C++11起)(C++20中移除) |
比較兩個分佈物件 (函式) |
(C++11) |
對偽隨機數分佈執行流輸入和輸出 (函式模板) |
[編輯] 示例
執行此程式碼
#include <iomanip> #include <iostream> #include <map> #include <random> int main() { std::random_device rd; std::mt19937 gen(rd()); std::discrete_distribution<> d({40, 10, 10, 40}); std::map<int, int> map; for (int n = 0; n < 1e4; ++n) ++map[d(gen)]; for (const auto& [num, count] : map) std::cout << num << " generated " << std::setw(4) << count << " times\n"; }
可能的輸出
0 generated 4037 times 1 generated 962 times 2 generated 1030 times 3 generated 3971 times