在线文档教程
C++
数字 | Numerics

std::geometric_distribution

STD:几何[医]分布

Defined in header
template< class IntType = int > class geometric_distribution;(since C++11)

产生随机非负整数值i,按离散概率函数分布:P%28 i p%29=p.%281-p%29。

该值表示获得单个成功所必需的“是”/“否”试验的次数为28次,成功的概率为p%29。

std::geometric_distribution<>(p)完全等同于std::negative_binomial_distribution<>(1, p)它也是离散的对应物std::exponential_distribution...

std::geometric_distribution满足RandomNumberDistribution...

模板参数

IntType-The result type generated by the generator. The effect is undefined if this is not one of short, int, long, long long, unsigned short, unsigned int, unsigned long, or unsigned long long.

成员类型

Member typeDefinition
result_typeIntType
param_typethe type of the parameter set, see RandomNumberDistribution.

成员函数

(constructor)constructs new distribution (public member function)
resetresets the internal state of the distribution (public member function)

世代

运算符%28%29在分布%28公共成员函数%29中生成下一个随机数。

特征

返回p分布参数%28的试用概率,生成真实的%29%28公共成员函数%29。

Param获取或设置分布参数对象%28公共成员函数%29

min返回最小潜在生成值%28公共成员函数%29

MAX返回最大潜在生成值%28公共成员函数%29

非会员职能

operator==operator!=compares two distribution objects (function)
operator<<operator>>performs stream input and output on pseudo-random number distribution (function template)

几何学[医]分发<>%280.5%29是默认的,并表示获得头部所需的掷硬币数。

二次

#include <iostream> #include <iomanip> #include <string> #include <map> #include <random> int main() { std::random_device rd; std::mt19937 gen(rd() std::geometric_distribution<> d; // same as std::negative_binomial_distribution<> d(1, 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 ** 5 * 6 7 8 9 10 11

二次

外部链接

几何分布。来自MathWorld的一个Wolfram Web资源。

© cppreference.com

在CreativeCommonsAttribution下授权-ShareAlike未移植许可v3.0。

http://en.cpPreference.com/w/cpp/数值/随机/几何[医]分布