std::reverse_copy
来自 cppreference.com
在头文件 <algorithm> 中定义 |
||
template< class BidirIt, class OutputIt > OutputIt reverse_copy( BidirIt first, BidirIt last, |
(1) | (从 C++20 开始为 constexpr) |
template< class ExecutionPolicy, class BidirIt, class ForwardIt > ForwardIt reverse_copy( ExecutionPolicy&& policy, |
(2) | (从 C++17 开始) |
1) 给定 N 作为 std::distance(first, last)。将范围
[
first,
last)
(源范围)中的元素复制到从 d_first 开始的另一个包含 N 个元素的范围(目标范围)中,以使目标范围中的元素按相反顺序排列。 如果源范围和目标范围重叠,则行为未定义。
2) 与 (1) 相同,但根据 policy 执行。
此重载仅在以下情况参与重载解析:
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, last | - | 要复制的元素范围 |
d_first | - | 目标范围的开始 |
类型要求 | ||
-BidirIt 必须满足 LegacyBidirectionalIterator 的要求。 | ||
-OutputIt 必须满足 LegacyOutputIterator 的要求。 | ||
-ForwardIt 必须满足 LegacyForwardIterator 的要求。 |
[编辑] 返回值
指向复制的最后一个元素的下一个元素的输出迭代器。
[编辑] 复杂度
正好 N 个赋值操作。
[编辑] 异常
带有名为 ExecutionPolicy
的模板参数的重载函数会报告以下错误
- 如果作为算法一部分调用的函数在执行时抛出异常,并且
ExecutionPolicy
是其中之一 标准策略,std::terminate 将被调用。对于任何其他ExecutionPolicy
,行为是实现定义的。 - 如果算法无法分配内存,则会抛出 std::bad_alloc。
[编辑] 可能的实现
另请参见 libstdc++、libc++ 和 MSVC STL 中的实现。
template<class BidirIt, class OutputIt> constexpr // since C++20 OutputIt reverse_copy(BidirIt first, BidirIt last, OutputIt d_first) { for (; first != last; ++d_first) *d_first = *(--last); return d_first; } |
[编辑] 注释
实现(例如 MSVC STL)可能在两个迭代器类型都满足 LegacyContiguousIterator 并且具有相同的类型,并且值类型是 TriviallyCopyable 时启用向量化。
[编辑] 示例
运行此代码
#include <algorithm> #include <iostream> #include <vector> int main() { auto print = [](const std::vector<int>& v) { for (const auto& value : v) std::cout << value << ' '; std::cout << '\n'; }; std::vector<int> v{1, 2, 3}; print(v); std::vector<int> destination(3); std::reverse_copy(std::begin(v), std::end(v), std::begin(destination)); print(destination); std::reverse_copy(std::rbegin(v), std::rend(v), std::begin(destination)); print(destination); }
输出
1 2 3 3 2 1 1 2 3
[编辑] 错误报告
以下更改行为的错误报告已追溯应用于先前发布的 C++ 标准。
DR | 应用于 | 已发布的行为 | 正确行为 |
---|---|---|---|
LWG 2074 | C++98 | 对于每个 i,赋值是 *(d_first + N - i) = *(first + i)[1] |
更正为 *(d_first + N - 1 - i) = *(first + i)[1] |
LWG 2150 | C++98 | 只需要分配一个元素 | 更正了要求 |
- ↑ 1.0 1.1 1.2 LegacyOutputIterator 不需要支持二进制
+
和-
。这里+
和-
的用法仅供说明:实际计算不需要使用它们。
[编辑] 另请参见
反转范围内元素的顺序 (函数模板) | |
(C++20) |
创建范围的已反转副本 (niebloid) |