- numeric[meta header]
- std[meta namespace]
- function template[meta id-type]
- cpp17[meta cpp]
namespace std{
template <class InputIterator, class OutputIterator, class T,
class BinaryOperation, class UnaryOperation>
OutputIterator
transform_exclusive_scan(InputIterator first,
InputIterator last,
OutputIterator result,
T init,
BinaryOperation binary_op,
UnaryOperation unary_op); // (1)
template <class ExecutionPolicy,
class ForwardIterator1, class ForwardIterator2, class T,
class BinaryOperation, class UnaryOperation>
ForwardIterator2
transform_exclusive_scan(ExecutionPolicy&& exec,
ForwardIterator1 first,
ForwardIterator1 last,
ForwardIterator2 result,
T init,
BinaryOperation binary_op,
UnaryOperation unary_op); // (2)
}
範囲の要素を変換しながら部分和を計算する。この関数は、i番目の部分和を求める際にi番目の要素を含めず範囲[0, i)
までの部分和を計算する。
transform_exclusive_scan()
の引数として初期値0
、シーケンス{1, 2, 3}
が与えられ、和に相当する二項演算関数オブジェクトbinary_op
をoperator+
、要素変換の関数オブジェクトunary_op
をパラメータをそのまま返す関数f()
であるとして、、以下のような結果が行われる:
{
0, // 0
1, // 0 + f(1)
3 // 0 + f(1) + f(2)
}
- (1) : 初期値を
init
、二項演算として任意の関数オブジェクトbinary_op
、要素を変換する関数オブジェクトunary_op
を使用して部分和を求める - (2) : (1)の並列アルゴリズム版。第1パラメータとして実行ポリシーをとる
- (1), (2) :
- 関数オブジェクト
unary_op
とbinary_op
の呼び出しは、範囲[first, last]
および範囲[result, result + (last - first)]
の要素変更およびイテレータの無効化をしてはならない
- 関数オブジェクト
- (1), (2) :
- 型
T
がstd::move_constructible
要件を満たすこと - 以下の全ての演算結果の型が、型
T
に変換可能であることbinary_op(init, init)
binary_op(init, unary_op(*first))
binary_op(unary_op(*first), unary_op(*first))
- 型
- (1), (2) : 範囲
[0, last - first)
の各値をK
として、出力先のイテレータresult + K
に、{init, unary_op(*first), unary_op(*(first + 1)), unary_op(*(first + 2)), ..., unary_op(*(last - 1))}
のK
番目までの要素の合計値をbinary_op
を使用して計算し、順不同に代入する
結果範囲の末尾イテレータを返す
関数オブジェクトunary_op
とbinary_op
をO(last - first
)計算量の回数だけ適用する
- (1), (2) :
result
はfirst
と同値になるだろう- 関数オブジェクト
binary_op
に数学的な結合性がない場合、この関数は非決定的な動作になる可能性がある - 関数オブジェクト
unary_op
は初期値init
に対しては適用しない
#include <iostream>
#include <vector>
#include <string>
#include <numeric>
int main()
{
std::vector<std::string> v = {"1", "2", "3", "4", "5"};
std::vector<int> result(v.size());
// result[0] = 0
// result[1] = 0 + stoi("1")
// result[2] = 0 + stoi("1") + stoi("2")
// result[3] = 0 + stoi("1") + stoi("2") + stoi("3")
// result[4] = 0 + stoi("1") + stoi("2") + stoi("3") + stoi("4")
std::transform_exclusive_scan(v.begin(), v.end(), result.begin(), 0,
[](int a, int b) { return a + b; },
[](const std::string& s) { return std::stoi(s); });
for (int x : result) {
std::cout << x << ' ';
}
std::cout << std::endl;
}
- std::transform_exclusive_scan[color ff0000]
- result.begin()[link /reference/vector/vector/begin.md]
- std::stoi[link /reference/string/stoi.md]
0 1 3 6 10
- C++17
- Clang: 7.0
- GCC:
- Visual C++: ??