<random>

公有成员函数
<random>

std::geometric_distribution::operator()

(1)
template<class URNG>result_type operator()(URNG& g);
(2)
template<class URNG>result_type operator()(URNG& g, const param_type& parm);
生成随机数
返回一个遵循对象关联的分布参数(版本1)或由parm指定的参数(版本2)的新的随机数。

生成器对象(g)通过其operator()成员函数。geometric_distribution 对象会转换由此获得的值,使得该成员函数的连续调用(使用相同的参数)生成符合适当概率的几何分布的值。


参数

g
一个均匀随机数生成器对象,用作随机性源。
URNG应为均匀随机数生成器类型,例如标准生成器类之一。
parm
一个表示分布参数的对象,通过调用成员函数 param 获取。
param_type是一个成员类型。

返回值

A new random number. (一个新的随机数。)
result_type是一个成员类型,定义为第一个类模板参数的别名 (IntType).

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// geometric_distribution example
#include <iostream>
#include <chrono>
#include <string>
#include <random>

int main()
{
  // construct a trivial random generator engine from a time-based seed:
  int seed = std::chrono::system_clock::now().time_since_epoch().count();
  std::default_random_engine generator (seed);

  std::geometric_distribution<int> distribution (1.0/5);

  std::cout << "each star is 5 spaces away from the next (on average):" << std::endl;
  for (int i=0; i<100; ++i) {
    int number = distribution(generator);
    std::cout << std::string (number,' ') << "*";
  }

  return 0;
}

可能的输出
each star is 5 spaces away from the next (on average):
             *  *   *          ** *       *               *    * * **     *
*  *        *    *  *                      *    * *         *      *     ** *
*      *       *       *       *       * *       *  ****         *    **  *   **
   *     **  *      *  *  *    *   * **        *                   *     *  *
 ***   *    *   *          *   *  *       * * *           *            ** ***
 * ***          *       **              *   *  **                      *   *  *
   *  *          *   *            *  *         ***


复杂度

摊销常数(对g.operator()).

另见