命名空间
变体
操作

std::sample

来自 cppreference.com
< cpp‎ | algorithm
 
 
算法库
受约束的算法和范围上的算法 (C++20)
受约束的算法,例如 ranges::copy, ranges::sort, ...
执行策略 (C++17)
排序和相关操作
分区操作
排序操作
二分搜索操作
(在分区范围上)
集合操作(在排序范围上)
合并操作(在排序范围上)
堆操作
最小/最大操作
(C++11)
(C++17)
字典序比较操作
排列操作
C 库
数值操作
未初始化内存操作
 
在头文件 <algorithm> 中定义
template< class PopulationIt, class SampleIt, class Distance, class URBG >

SampleIterator sample( PopulationIt first, PopulationIt last,

                       SampleIt out, Distance n, URBG&& g );
(自 C++17)

从序列 [firstlast) 中选择 n 个元素(无重复),使得每个可能的样本出现的概率相等,并将这些选定的元素写入输出迭代器 out。随机数使用随机数生成器 g 生成。

如果 n 大于序列中的元素数量,则选择序列中的所有元素。

只有当 PopulationIt 满足 LegacyForwardIterator 的要求时,该算法才是稳定的(保留选定元素的相对顺序)。

如果 类型 first(直到 C++20)*first(自 C++20) 的值类型不可写到 out,程序格式错误。

如果满足以下任何条件,则行为未定义

(直到 C++23)
(自 C++23)
  • T 的返回类型不可转换为 Distance
(直到 C++20)

内容

[编辑] 参数

first, last - 一对迭代器,形成要从中进行采样的范围(总体)
out - 写入样本的输出迭代器
n - 要进行的样本数量
g - 用作随机性来源的随机数生成器
类型要求
-
Distance 必须是整数类型。

[编辑] 返回值

返回 out 的副本,该副本位于输出的最后一个样本之后,即样本范围的末尾。

[编辑] 复杂度

std::distance(first, last) 线性。

[编辑] 可能的实现

请参阅 libstdc++libc++MSVC STL 中的实现。

[编辑] 备注

该函数可能实现选择抽样或 蓄水池抽样

特性测试 Std 特性
__cpp_lib_sample 201603L (C++17) std::sample

[编辑] 示例

#include <algorithm>
#include <iostream>
#include <iterator>
#include <random>
#include <string>
 
int main()
{
    std::string in {"ABCDEFGHIJK"}, out;
    std::sample(in.begin(), in.end(), std::back_inserter(out), 4,
                std::mt19937 {std::random_device{}()});
    std::cout << "Four random letters out of " << in << " : " << out << '\n';
}

可能的输出

Four random letters out of ABCDEFGHIJK: EFGK

[编辑] 另请参阅

(直到 C++17)(C++11)
随机重新排列范围内的元素
(函数模板) [编辑]
从序列中选择 N 个随机元素
(niebloid)[编辑]