std::rotate_copy
来自cppreference.com
在标头 <algorithm> 定义
|
||
template< class ForwardIt, class OutputIt > OutputIt rotate_copy( ForwardIt first, ForwardIt n_first, |
(1) | (C++20 起为 constexpr ) |
template< class ExecutionPolicy, class ForwardIt1, class ForwardIt2 > |
(2) | (C++17 起) |
1) 从范围
[
first,
last)
复制元素到始于 d_first 的另一范围,使得 *n_first 成为新范围的首元素,而 *(n_first - 1) 成为末元素。2) 同 (1),但按照 policy 执行。
此重载只有在
是 true 时时才会参与重载决议。
std::is_execution_policy_v<std::decay_t<ExecutionPolicy>> |
(C++20 前) |
std::is_execution_policy_v<std::remove_cvref_t<ExecutionPolicy>> |
(C++20 起) |
如果满足以下任意条件,那么行为未定义:
-
[
first,
n_first)
或[
n_first,
last)
不是有效范围。 - 源和目标范围有重叠。
参数
first, last | - | 要复制的元素范围 |
n_first | - | 指向 [ first, last) 中应出现在新范围起始的元素的迭代器
|
d_first | - | 目标范围的起始 |
policy | - | 所用的执行策略。细节见执行策略。 |
类型要求 | ||
-ForwardIt, ForwardIt1, ForwardIt2 必须满足老式向前迭代器 (LegacyForwardIterator) 。
| ||
-OutputIt 必须满足老式输出迭代器 (LegacyOutputIterator) 。
|
返回值
指向最后被复制元素后一元素的输出迭代器。
复杂度
std::distance(first, last) 次赋值。
异常
拥有名为 ExecutionPolicy
的模板形参的重载按下列方式报告错误:
- 如果作为算法一部分调用的函数的执行抛出异常,且
ExecutionPolicy
是标准策略之一,那么调用 std::terminate。对于任何其他ExecutionPolicy
,行为由实现定义。 - 如果算法无法分配内存,那么抛出 std::bad_alloc。
可能的实现
参阅 libstdc++、libc++ 与 MSVC STL 中的实现。
示例
运行此代码
#include <algorithm> #include <iostream> #include <iterator> #include <vector> int main() { std::vector<int> src{1, 2, 3, 4, 5}; std::vector<int> dest(src.size()); auto pivot = std::find(src.begin(), src.end(), 3); std::rotate_copy(src.begin(), pivot, src.end(), dest.begin()); for (int i : dest) std::cout << i << ' '; std::cout << '\n'; // copy the rotation result directly to the std::cout pivot = std::find(dest.begin(), dest.end(), 1); std::rotate_copy(dest.begin(), pivot, dest.end(), std::ostream_iterator<int>(std::cout, " ")); std::cout << '\n'; }
输出:
3 4 5 1 2 1 2 3 4 5
参阅
旋转范围中的元素顺序 (函数模板) | |
(C++20) |
复制并旋转元素范围 (niebloid) |