C++ 参考手册
- C++11
- C++14
- C++17
- C++20
- C++ 编译器支持情况表
- 独立与宿主实现
- C++ 语言
- C++ 关键词
- 预处理器
- C++ 标准库头文件
- 具名要求
- 功能特性测试 (C++20)
- 工具库
- 类型支持(基本类型、RTTI、类型特性)
- 概念库 (C++20)
- 错误处理
- 动态内存管理
- 日期和时间工具
- 字符串库
- 容器库
- 迭代器库
- 范围库 (C++20)
- 算法库
- 数值库
- 常用数学函数
- 数学特殊函数
- 伪随机数生成
- std::uniform_random_bit_generator
- std::linear_congruential_engine
- std::mersenne_twister_engine
- std::srand
- std::rand
- std::subtract_with_carry_engine
- std::discard_block_engine
- std::independent_bits_engine
- std::shuffle_order_engine
- std::random_device
- std::uniform_int_distribution
- std::uniform_real_distribution
- std::generate_canonical
- std::bernoulli_distribution
- std::binomial_distribution
- std::negative_binomial_distribution
- std::geometric_distribution
- std::poisson_distribution
- std::exponential_distribution
- std::gamma_distribution
- std::weibull_distribution
- std::extreme_value_distribution
- std::normal_distribution
- std::lognormal_distribution
- std::chi_squared_distribution
- std::cauchy_distribution
- std::fisher_f_distribution
- std::student_t_distribution
- std::discrete_distribution
- std::piecewise_constant_distribution
- std::piecewise_linear_distribution
- std::seed_seq
- RAND_MAX
- std::midpoint
- std::lerp
- std::has_single_bit
- std::bit_ceil
- std::bit_floor
- std::bit_width
- std::rotl
- 浮点环境
- std::complex
- std::valarray
- 编译时有理数算术
- std::gcd
- std::lcm
- 数学常数
- std::bit_cast
- std::rotr
- std::countl_zero
- std::countl_one
- std::countr_zero
- std::countr_one
- std::popcount
- 注释
- 输入/输出库
- 文件系统库
- 本地化库
- 正则表达式库
- 原子操作库
- 线程支持库
- 实验性 C++ 特性
- 有用的资源
- 索引
- std 符号索引
- 协程支持 (C++20)
- C++ 关键词
std::binomial_distribution
定义于头文件 <random>
|
||
template< class IntType = int > class binomial_distribution; |
(C++11 起) | |
生产随机非负整数值 i ,分布依照离散概率函数:
- P(i|t,p) =⎛
⎜
⎝t
i⎞
⎟
⎠ · pi
· (1 − p)t−i
获得的值是 t 次是/否实验序列中的成功次数,每次成功的概率为 p 。
std::binomial_distribution
满足随机数分布 (RandomNumberDistribution) 。
模板形参
IntType | - | 生成器所生成的结果类型。若它不是 short 、 int 、 long 、 long long 、 unsigned short 、 unsigned int 、 unsigned long 或 unsigned long long 之一则效果未定义。
|
模板类型
成员类型 | 定义 |
result_type
|
IntType |
param_type
|
参数集的类型,见随机数分布 (RandomNumberDistribution) 。 |
成员函数
构造新分布 (公开成员函数) | |
重置分布的内部状态 (公开成员函数) | |
生成 | |
生成分布中的下个随机数 (公开成员函数) | |
特征 | |
返回分布参数 (公开成员函数) | |
获取或设置随机参数对象 (公开成员函数) | |
返回最小的潜在生成值 (公开成员函数) | |
返回最大的潜在生成值 (公开成员函数) |
非成员函数
比较两个分布对象 (函数) | |
执行伪随机数分布的流输入和输出 (函数模板) |
示例
每次试验成功概率准确为 0.5 的二项分布的点图,描绘与贾宪三角的关系(此情况下无、 1 、 2 、 3 或全部 4 次试验成功的概率为 1:4:6:4:1 )
运行此代码
#include <iostream> #include <iomanip> #include <string> #include <map> #include <random> int main() { std::random_device rd; std::mt19937 gen(rd()); // 进行 4 次试验,平均 2 次中成功 1 次 std::binomial_distribution<> d(4, 0.5); std::map<int, int> hist; for (int n = 0; n < 10000; ++n) { ++hist[d(gen)]; } for (auto p : hist) { std::cout << p.first << ' ' << std::string(p.second/100, '*') << '\n'; } }
可能的输出:
0 ****** 1 ************************ 2 ************************************* 3 ************************* 4 ******
外部链接
Weisstein, Eric W. “二项分布。”来自 MathWorld--A Wolfram Web Resource 。