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
默认随机引擎
C++11
丢弃区块引擎
C++11
独立比特引擎
C++11
knuth_b
C++11
线性同余引擎
C++11
梅森旋转引擎
C++11
minstd_rand
C++11
minstd_rand0
C++11
mt19937
C++11
mt19937_64
C++11
随机设备
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
独立比特引擎
C++11
independent_bits_engine::(构造函数)
成员函数
C++11
independent_bits_engine::base
C++11
independent_bits_engine::discard
C++11
independent_bits_engine::operator()
C++11
independent_bits_engine::seed
静态成员函数
C++11
independent_bits_engine::max
C++11
independent_bits_engine::min
非成员函数
C++11
operator<<
C++11
operator>>
C++11
关系运算符
参考
<random>
独立比特引擎
类模板
<random>
std::
independent_bits_engine
template <class Engine, size_t w, class UIntType>class independent_bits_engine;
独立比特随机数引擎适配器
一个引擎适配器类模板,它将伪随机数生成器
Engine
类型适配为生成具有特定位数(
w
)的随机数。
模板参数
引擎
一个
随机数引擎
类型。所有标准生成器,除了
random_device
,都是随机数引擎类型。
w
字长:
每个生成数字的位数。
size_t
是一个无符号整数类型。
UIntType
无符号整数类型。
引擎生成的数值是该类型。
成员类型
以下别名是...的成员类型
独立比特引擎
:
成员类型
定义
说明
result_type
第三个模板参数 (
UIntType
)
生成的数字的类型。
成员函数
(构造函数)
构造独立位引擎
(公共成员函数)
min
最小值
(公共静态成员函数)
max
最大值
(公共静态成员函数)
seed
种子基础引擎
(公共成员函数)
operator()
Generate random number
(public member function)
(生成随机数
(公共成员函数)
)
discard (丢弃)
Advance internal state
(public member function)
(推进内部状态
(公共成员函数)
)
base
返回基引擎
(public member function)
非成员函数
operator>>
从输入流提取 (Extract from input stream)
(function template)
operator<<
插入到输出流
(函数模板)
关系运算符
关系运算符
(函数模板)
另见
丢弃区块引擎
弃块随机数引擎适配器
(类模板)
shuffle_order_engine
随机序列随机数引擎适配器
(类模板)