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&,但函数必须不修改传递给它的对象,并且必须能够接受 |
类型要求 | ||
-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++ 标准。
缺陷报告 | 应用于 | 发布时的行为 | 正确的行为 |
---|---|---|---|
P0896R4 | C++98 | *first 不需要可写入 d_first | 若不可写入,则程序非良构 |
[编辑] 参阅
对一个范围的前 N 个元素进行排序 (函数模板) | |
将一个范围按升序排序 (函数模板) | |
对一个范围的元素进行排序,同时保留相等元素之间的顺序 (函数模板) | |
(C++20) |
复制并部分排序一个范围的元素 (算法函数对象) |