<random>

類模板
<random>

std::discrete_distribution

template <class IntType = int> class discrete_distribution;
離散分佈 (Discrete distribution)
一種隨機數分佈,根據離散分佈生成整數值,其中每個可能的值都有預定義的生成機率。



w 是在 構造時 (或使用成員函式 param) 設定的一組 n 個非負的權重。每個可能生成的數字被生成的機率為其對應的權重除以所有權重之和。

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

模板引數

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

成員型別

以下別名是離散分佈 (discrete_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
// discrete_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::discrete_distribution<int> distribution {2,2,1,1,2,2,1,1,2,2};

  int p[10]={};

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

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

  return 0;
}

可能的輸出
a discrete_distribution:
0: ************
1: *************
2: *****
3: ******
4: ************
5: ************
6: ******
7: ******
8: ************
9: ************


另見