std::partial_sort_copy
在头文件 <algorithm> 中定义 |
||
template< class InputIt, class RandomIt > RandomIt partial_sort_copy( InputIt first, InputIt last, |
(1) | (从 C++20 开始为 constexpr) |
template< class ExecutionPolicy, class ForwardIt, class RandomIt > |
(2) | (从 C++17 开始) |
template< class InputIt, class RandomIt, class Compare > RandomIt partial_sort_copy( InputIt first, InputIt last, |
(3) | (从 C++20 开始为 constexpr) |
template< class ExecutionPolicy, class ForwardIt, class RandomIt, class Compare > |
(4) | (从 C++17 开始) |
按升序对范围 [
first,
last)
中的一些元素进行排序,并将结果存储在范围 [
d_first,
d_last)
中。
最多 d_last - d_first 个元素按排序顺序放置到范围 [
d_first,
d_first + n)
中。 n 是要排序的元素数量(std::min(std::distance(first, last), d_last - d_first))。相等元素的顺序不保证保留。
std::is_execution_policy_v<std::decay_t<ExecutionPolicy>> 为 true。 |
(直到 C++20) |
std::is_execution_policy_v<std::remove_cvref_t<ExecutionPolicy>> 为 true。 |
(从 C++20 开始) |
如果 *first 不可 写入 到 d_first,则程序格式错误。
如果满足以下任何条件,则行为未定义
|
(直到 C++11) |
(从 C++11 开始) |
内容 |
[编辑] 参数
first, last | - | 要排序的元素范围 |
d_first, d_last | - | 定义目标范围的随机访问迭代器 |
policy | - | 要使用的执行策略。有关详细信息,请参见执行策略。 |
comp | - | 比较函数对象(即满足Compare要求的对象),如果第一个参数小于(即在排序中位于第二个参数之前)第二个参数,则返回true。 比较函数的签名应等效于以下内容 bool cmp(const Type1& a, const Type2& b); 虽然签名不需要具有const&,但函数不得修改传递给它的对象,并且必须能够接受类型(可能为 const) |
类型要求 | ||
-InputIt 必须满足LegacyInputIterator的要求。 | ||
-ForwardIt 必须满足LegacyForwardIterator的要求。 | ||
-RandomIt 必须满足LegacyRandomAccessIterator的要求。 | ||
-Compare 必须满足Compare的要求。 |
[编辑] 返回值
指向定义排序范围上限的元素的迭代器,即 d_first + std::min(std::distance(first, last), d_last - d_first).
[编辑] 复杂度
给定 N 作为 std::distance(first, last),D 作为 d_last - d_first
[编辑] 异常
具有名为 ExecutionPolicy
的模板参数的重载报告错误如下
- 如果作为算法的一部分调用的函数的执行抛出异常,并且
ExecutionPolicy
是标准策略之一,则调用std::terminate。对于任何其他ExecutionPolicy
,行为是实现定义的。 - 如果算法无法分配内存,则抛出std::bad_alloc。
[编辑] 可能的实现
[编辑] 示例
以下代码对整数向量进行排序,并将它们复制到一个较小的向量和一个较大的向量中。
#include <algorithm> #include <functional> #include <iostream> #include <string_view> #include <type_traits> #include <vector> void println(std::string_view rem, const auto& v) { std::cout << rem; if constexpr (std::is_scalar_v<std::decay_t<decltype(v)>>) std::cout << v; else for (int e : v) std::cout << e << ' '; std::cout << '\n'; } int main() { const auto v0 = {4, 2, 5, 1, 3}; std::vector<int> v1{10, 11, 12}; std::vector<int> v2{10, 11, 12, 13, 14, 15, 16}; std::vector<int>::iterator it; it = std::partial_sort_copy(v0.begin(), v0.end(), v1.begin(), v1.end()); println("Writing to the smaller vector in ascending order gives: ", v1); if (it == v1.end()) println("The return value is the end iterator", ' '); it = std::partial_sort_copy(v0.begin(), v0.end(), v2.begin(), v2.end(), std::greater<int>()); println("Writing to the larger vector in descending order gives: ", v2); println("The return value is the iterator to ", *it); }
输出
Writing to the smaller vector in ascending order gives: 1 2 3 The return value is the end iterator Writing to the larger vector in descending order gives: 5 4 3 2 1 15 16 The return value is the iterator to 15
[编辑] 缺陷报告
以下行为更改缺陷报告被追溯地应用于先前发布的 C++ 标准。
DR | 应用于 | 已发布的行为 | 正确的行为 |
---|---|---|---|
P0896R4 | C++98 | *first 不需要可写到 d_first | 如果不可写,则程序格式不正确 |
[编辑] 另请参阅
对范围的前 N 个元素进行排序 (函数模板) | |
按升序对范围进行排序 (函数模板) | |
在保留相等元素之间顺序的同时对范围内的元素进行排序 (函数模板) | |
(C++20) |
复制并部分排序范围内的元素 (niebloid) |