<random>

类模板
<random>

std::negative_binomial_distribution

template <class IntType = int> class negative_binomial_distribution;
负二项分布 (Negative binomial distribution)
随机数分布,根据负二项离散分布(也称为帕斯卡分布)生成整数,该分布由以下概率质量函数描述:



此分布生成随机整数,其中每个值代表在一系列成功概率为p的试验中,在k次成功发生之前的不成功试验次数。

要生成遵循此分布的随机值,请调用其成员函数 operator()

模板参数

IntType
一个整数类型。作为成员类型别名result_type.
默认情况下,它是int.

成员类型

以下别名是负二项分布 (negative_binomial_distribution):

成员类型定义说明
result_type第一个模板参数 (IntType)生成的数字类型(默认为int)
param_type未指定 (not specified)由成员 param 返回的类型。

成员函数


分布参数


非成员函数


示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// negative_binomial_distribution
#include <iostream>
#include <random>

int main()
{
  const int nrolls = 10000; // number of experiments
  const int nstars = 100;   // maximum number of stars to distribute

  std::default_random_engine generator;
  std::negative_binomial_distribution<int> distribution(3,0.5);

  int p[10]={};

  for (int i=0; i<nrolls; ++i) {
    int number = distribution(generator);
    if (number<10) ++p[number];
  }

  std::cout << "negative_binomial_distribution (k=3,p=0.5):" << std::endl;
  for (int i=0; i<10; ++i)
    std::cout << i << ": " << std::string(p[i]*nstars/nrolls,'*') << std::endl;

  return 0;
}

可能的输出
negative_binomial_distribution (k=3,p=0.5):
0: ************
1: *******************
2: *****************
3: ****************
4: ***********
5: *******
6: *****
7: ***
8: **
9: *


另见