類模板
<random>

std::geometric_distribution

template <class IntType = int> class geometric_distribution;
幾何分佈
生成按照幾何離散分佈的整數的隨機數分佈,該分佈由以下機率質量函式描述



此分佈生成正隨機整數,其中每個值表示在一系列每次成功機率為p的試驗中,第一次成功之前的失敗次數。

分佈引數p構造時設定。

要生成遵循此分佈的隨機值,請呼叫其成員函式operator()

其對應的連續分佈是指數分佈

模板引數

IntType
一個整數型別。作為成員類型別名result_type.
預設情況下,它是int.

成員型別

以下別名是幾何分佈:

成員型別定義說明
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
// geometric_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::geometric_distribution<int> distribution(0.3);

  int p[10]={};

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

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

  return 0;
}

可能的輸出
geometric_distribution (0.3):
0: *****************************
1: *********************
2: **************
3: *********
4: *******
5: *****
6: ***
7: **
8: *
9: *


另見