gpt4 book ai didi

c++ - 如何实现自己的生成器以与标准分布一起使用

转载 作者:行者123 更新时间:2023-11-30 05:11:19 25 4
gpt4 key购买 nike

我想使用我用 C++11 <random> 的一些分布实现的随机数生成器图书馆。

我的生成器类是否必须遵守一个接口(interface),以便它的一个实例可以传递给 operator()分配方法?

或者是否有我必须从中派生我的类的基类?

最佳答案

您的界面必须匹配 UniformRandomBitGenerator理念:

+-----------------+--------------+-------------------------------------------------------------------------------------------------------+
| Expression | Return type | Requirements |
+-----------------+--------------+-------------------------------------------------------------------------------------------------------+
| G::result_type | T | T is an unsigned integer type |
| G::min() | T | Returns the smallest value that G's operator() may return. The value is strictly less than G::max(). |
| G::max() | T | Returns the largest value that G's operator() may return. The value is strictly greater than G::min() |
| g() | T | Returns a value in the closed interval [G::min(), G::max()]. Has amortized constant complexity. |
+-----------------+--------------+-------------------------------------------------------------------------------------------------------+

您不必从基类派生,因为绑定(bind)发生在编译时。

这是一个与接口(interface)匹配的生成器的玩具示例:

#include <random>
#include <iostream>

class MyGen
{
public:
using result_type = int;
static constexpr result_type min() { return 0; }
static constexpr result_type max() { return 99; }
result_type operator()() { return rand() % 100; }
};

int main()
{
std::uniform_int_distribution<int> dist{1, 6};
MyGen gen;

for(int i = 0; i < 10; i++)
std::cout << dist(gen) << '\n';

return 0;
}

关于c++ - 如何实现自己的生成器以与标准分布一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45121326/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com