std::inclusive_scan
在标头 <numeric> 定义
|
||
template< class InputIt, class OutputIt > OutputIt inclusive_scan( InputIt first, InputIt last, |
(1) | (C++17 起) (C++20 起为 constexpr ) |
template< class ExecutionPolicy, class ForwardIt1, class ForwardIt2 > |
(2) | (C++17 起) |
template< class InputIt, class OutputIt, class BinaryOp > OutputIt inclusive_scan( InputIt first, InputIt last, |
(3) | (C++17 起) (C++20 起为 constexpr ) |
template< class ExecutionPolicy, class ForwardIt1, class ForwardIt2, class BinaryOp > |
(4) | (C++17 起) |
template< class InputIt, class OutputIt, class BinaryOp, class T > |
(5) | (C++17 起) (C++20 起为 constexpr ) |
template< class ExecutionPolicy, class ForwardIt1, class ForwardIt2, |
(6) | (C++17 起) |
[
0,
std::distance(first, last))
中的所有整数 i,按顺序进行以下操作:
- 创建一个序列,它按顺序包含
[
first,
iter]
中的所有元素,其中 iter 是 first 的下 i 个迭代器。 - 计算该序列在 op 下的广义非交换和。
- 将计算结果赋给 *dest,其中 dest 是 d_first 的下 i 个迭代器。
[
first,
iter]
中的所有元素。
std::is_execution_policy_v<std::decay_t<ExecutionPolicy>> |
(C++20 前) |
std::is_execution_policy_v<std::remove_cvref_t<ExecutionPolicy>> |
(C++20 起) |
一个元素序列在二元运算 binary_op 上的广义非交换和 定义如下:
- 如果序列只有一个元素,那么和就是该元素的值。
- 否则,依次进行以下操作:
- 从序列中选择两个相邻元素 elem1 和 elem2。
- 计算 binary_op(elem1, elem2),并将序列中的这两个元素替换成计算结果。
- 重复以上两步,直到组里只剩一个元素。
给定 binary_op 为实际的二元运算:
- 如果 binary_op 不可结合(例如浮点加法),那么结果不确定。
- 对于重载 (1-4),如果 binary_op(*first, *first) 不可转换到 decltype(first) 的值类型,那么程序非良构。
- 对于重载 (5,6),如果以下任何值不可转换到
T
,那么程序非良构:
- binary_op(init, *first)
- binary_op(init, init)
- binary_op(*first, *first)
- 如果满足以下任意条件,那么行为未定义:
- 对于重载 (1-4),decltype(first) 的值类型不可移动构造 (MoveConstructible) 。
- 对于重载 (5,6),
T
不可移动构造 (MoveConstructible) 。 - binary_op 会修改
[
first,
last)
的元素。 - binary_op 会使
[
first,
last]
中的迭代器或子范围失效。
参数
first, last | - | 要求和的元素范围 |
d_first | - | 目标范围的起始,可以等于 first |
policy | - | 所用的执行策略。细节见执行策略。 |
init | - | 初始值 |
op | - | 将应用到输入迭代器的解引用结果、其他 op 的结果和 init(如果有提供)的二元函数对象 (FunctionObject) 。 |
类型要求 | ||
-InputIt 必须满足老式输入迭代器 (LegacyInputIterator) 。
| ||
-OutputIt 必须满足老式输出迭代器 (LegacyOutputIterator) 。
| ||
-ForwardIt1, ForwardIt2 必须满足老式向前迭代器 (LegacyForwardIterator) 。
|
返回值
指向最后写入元素后一位的迭代器。
复杂度
给定 N 为 std::distance(first, last):
异常
拥有名为 ExecutionPolicy
的模板形参的重载按下列方式报告错误:
- 如果作为算法一部分调用的函数的执行抛出异常,且
ExecutionPolicy
是标准策略之一,那么调用 std::terminate。对于任何其他ExecutionPolicy
,行为由实现定义。 - 如果算法无法分配内存,那么抛出 std::bad_alloc。
示例
#include <functional> #include <iostream> #include <iterator> #include <numeric> #include <vector> int main() { std::vector data{3, 1, 4, 1, 5, 9, 2, 6}; std::cout << "Exclusive sum: "; std::exclusive_scan(data.begin(), data.end(), std::ostream_iterator<int>(std::cout, " "), 0); std::cout << "\nInclusive sum: "; std::inclusive_scan(data.begin(), data.end(), std::ostream_iterator<int>(std::cout, " ")); std::cout << "\n\nExclusive product: "; std::exclusive_scan(data.begin(), data.end(), std::ostream_iterator<int>(std::cout, " "), 1, std::multiplies<>{}); std::cout << "\nInclusive product: "; std::inclusive_scan(data.begin(), data.end(), std::ostream_iterator<int>(std::cout, " "), std::multiplies<>{}); }
输出:
Exclusive sum: 0 3 4 8 9 14 23 25 Inclusive sum: 3 4 8 9 14 23 25 31 Exclusive product: 1 3 3 12 12 60 540 1080 Inclusive product: 3 3 12 12 60 540 1080 6480
参阅
计算范围内各相邻元素之间的差 (函数模板) | |
对一个范围内的元素求和或折叠 (函数模板) | |
计算范围内元素的部分和 (函数模板) | |
(C++17) |
应用一个可调用物,然后进行包含扫描 (函数模板) |
(C++17) |
类似 std::partial_sum,第 i 个和中排除第 i 个输入 (函数模板) |