cplusplus
.com
教程
参考
文章
论坛
C++
教程
参考
文章
论坛
参考
C 库
<cassert> (assert.h)
<cctype> (ctype.h)
<cerrno> (errno.h)
C++11
<cfenv> (fenv.h)
<cfloat> (float.h)
C++11
<cinttypes> (inttypes.h)
<ciso646> (iso646.h)
<climits> (limits.h)
<clocale> (locale.h)
<cmath> (math.h)
<csetjmp> (setjmp.h)
<csignal> (signal.h)
<cstdarg> (stdarg.h)
C++11
<cstdbool> (stdbool.h)
<cstddef> (stddef.h)
C++11
<cstdint> (stdint.h)
<cstdio> (stdio.h)
<cstdlib> (stdlib.h)
<cstring> (string.h)
C++11
<ctgmath> (tgmath.h)
<ctime> (time.h)
C++11
<cuchar> (uchar.h)
<cwchar> (wchar.h)
<cwctype> (wctype.h)
容器
C++11
<array>
<deque>
C++11
<forward_list>
<list>
<map>
<queue>
<set>
<stack>
C++11
<unordered_map>
C++11
<unordered_set>
<vector>
输入/输出
<fstream>
<iomanip>
<ios>
<iosfwd>
<iostream>
<istream>
<ostream>
<sstream>
<streambuf>
多线程
C++11
<atomic>
C++11
<condition_variable>
C++11
<future>
C++11
<mutex>
C++11
<thread>
其他
<algorithm>
<bitset>
C++11
<chrono>
C++11
<codecvt>
<complex>
<exception>
<functional>
C++11
<initializer_list>
<iterator>
<limits>
<locale>
<memory>
<new>
<numeric>
C++11
<random>
C++11
<ratio>
C++11
<regex>
<stdexcept>
<string>
C++11
<system_error>
C++11
<tuple>
C++11
<type_traits>
C++11
<typeindex>
<typeinfo>
<utility>
<valarray>
<random>
分布
C++11
伯努利分布
C++11
二项分布
C++11
柯西分布
C++11
卡方分布
C++11
离散分布
C++11
指数分布
C++11
极值分布
C++11
费舍尔F分布
C++11
伽马分布
C++11
几何分布
C++11
对数正态分布
C++11
负二项分布
C++11
正态分布
C++11
分段常数分布
C++11
分段线性分布
C++11
泊松分布
C++11
学生t分布
C++11
均匀整数分布
C++11
均匀实数分布
C++11
威布尔分布
生成器
C++11
default_random_engine
C++11
discard_block_engine
C++11
independent_bits_engine
C++11
knuth_b
C++11
linear_congruential_engine
C++11
mersenne_twister_engine
C++11
minstd_rand
C++11
minstd_rand0
C++11
mt19937
C++11
mt19937_64
C++11
random_device
C++11
ranlux24
C++11
ranlux24_base
C++11
ranlux48
C++11
ranlux48_base
C++11
shuffle_order_engine
C++11
subtract_with_carry_engine
其他
C++11
generate_canonical
C++11
seed_seq
参考
<random>
knuth_b
类
<random>
std::
knuth_b
typedef shuffle_order_engine <minstd_rand0,256> knuth_b;
Knuth-B 生成器
一个引擎适配器,它使用简单的伪随机数生成器引擎
minstd_rand0
生成的乱序序列。
它是在具有以下模板参数的
linear_congruential_engine
上
shuffle_order_engine
适配器的实例化。
参数
名称
值
引擎
基础引擎
minstd_rand0
k
表的大小
256
成员类型
以下别名是...的成员类型
knuth_b
:
成员类型
定义
说明
result_type
uint_fast32_t
生成的数字的类型。
成员函数
作为
shuffle_order_engine
类型,它具有以下成员函数:
(构造函数)
构造 shuffle-order 引擎
(公共成员函数)
min
最小值
(公共静态成员函数)
max
最大值
(公共静态成员函数)
seed
种子基础引擎
(公共成员函数)
operator()
Generate random number
(public member function)
(生成随机数
(公共成员函数)
)
discard (丢弃)
Advance internal state
(public member function)
(推进内部状态
(公共成员函数)
)
非成员函数
作为
shuffle_order_engine
类型,可以对其应用以下运算符重载:
operator<<
插入到输出流
(函数模板)
operator>>
从输入流提取 (Extract from input stream)
(function template)
关系运算符
关系运算符
(函数模板)
成员常量
成员常量
定义
说明
table_size
256
缓冲区表的大小。
另见
minstd_rand0
最小标准 minstd_rand0 生成器
(类)
shuffle_order_engine
随机序列随机数引擎适配器
(类模板)
linear_congruential_engine
线性同余随机数引擎
(类模板)