std::shift_left, std::shift_right_C++中文网
| 定义于头文件 |
||
| template< class ForwardIt > constexpr ForwardIt shift_left( ForwardIt first, ForwardIt last, |
(1) | (C++20 起) |
| template< class ExecutionPolicy, class ForwardIt > ForwardIt shift_left( ExecutionPolicy&& policy, ForwardIt first, ForwardIt last, |
(2) | (C++20 起) |
| template< class ForwardIt > constexpr ForwardIt shift_right( ForwardIt first, ForwardIt last, |
(3) | (C++20 起) |
| template< class ExecutionPolicy, class ForwardIt > ForwardIt shift_right( ExecutionPolicy&& policy, ForwardIt first, ForwardIt last, |
(4) | (C++20 起) |
将范围 [first, last) 中的元素迁移 n 个位置。
1) 向范围开端迁移元素。若 n <= 0 || n >= last - first 则无效果。否则,对于每个 [0, last - first - n) 中的整数 i ,移动原于位置 first + n + i 的元素到位置 first + i 。以 i 从 0 开始递增的顺序进行移动。
3) 向范围结尾迁移元素。若 n <= 0 || n >= last - first 则无效果。否则对于每个 [0, last - first - n) 中的整数 i ,移动原于位置 first + i 的元素到位置 first + n + i 。若 ForwardIt 满足遗留双向迭代器 (LegacyBidirectionalIterator) 的要求,则以 i 从 last - first - n - 1 开始递减的顺序进行移动。
在原范围但不在新范围中的元素被置于合法但未指定的状态。
参数
| first | - | 原范围的开端 |
| last | - | 原范围的结尾 |
| n | - | 要迁移的位置数 |
| policy | - | 所用的执行策略。细节见执行策略。 |
| 类型要求 | ||
-ForwardIt 必须满足遗留向前迭代器 (LegacyForwardIterator) 的要求。
| ||
-对于重载 (3-4) ForwardIt 必须满足遗留双向迭代器 (LegacyBidirectionalIterator) 的要求或值可交换 (ValueSwappable) 的要求。
| ||
-解引用 ForwardIt 结果的类型必须满足可移动赋值 (MoveAssignable) 的要求。
| ||
返回值
1-2) 结果范围的结尾。若 n 为正且小于 last - first ,则返回 first + (last - first - n) 。否则若 n 为正,则返回 first 。否则返回 last 。
3-4) 结果范围的开始。若 n 为正且小于 last - first ,则返回 first + n 。否则若 n 为正,则返回 last 。否则返回 first 。
复杂度
异常
拥有名为 ExecutionPolicy 的模板形参的重载按下列方式报告错误:
- 若作为算法一部分调用的函数的执行抛出异常,且
ExecutionPolicy为标准策略之一,则调用 std::terminate 。对于任何其他ExecutionPolicy,行为是实现定义的。 - 若算法无法分配内存,则抛出 std::bad_alloc 。