C++ 算法 transform() 函数有两种不同的使用方式:
1.一元运算:- 该方法对[first1, last1]范围内的元素执行一元运算op,并将结果存储在从结果开始的范围内。
此 transform() 将函数应用于范围的每个元素:
2.二元运算:- 该方法对[first1, last1]范围内的元素进行二元运算binary_op,范围内的元素以迭代器first2开始,并将结果存储在从result开始的范围内。
这个 transform() 需要两个 2 范围,并在输入范围的每对元素上应用一个带有 2 个参数的函数:
用法
一元运算(1)
template <class InputIterator, class OutputIterator, class UnaryOperation>
OutputIterator transform (InputIterator first1, InputIterator last1,
OutputIterator result, UnaryOperation op);
二元运算(2)
template <class InputIterator1, class InputIterator2,
class OutputIterator, class BinaryOperation>
OutputIterator transform (InputIterator1 first1, InputIterator1 last1,
InputIterator2 first2, OutputIterator result,
BinaryOperation binary_op);
参数
first1:一个输入迭代器,指向要操作的第一个范围的第一个元素的位置。
last1:一个迭代器,指向要操作的第一个范围的最后一个元素之后的位置。
first2:输入迭代器指向要操作的第二个范围中的第一个元素。
result:一个输出迭代器到存储操作结果的范围的初始位置。
op:一元函数应用于范围的每个元素。
binary_op:两个元素作为参数传递的二进制函数。
返回值
transform() 返回一个指向转换范围末尾的迭代器。
复杂度
复杂性在 first1 和 last1 之间的距离上是线性的。
数据竞争
范围 [first1, last1) 中的对象被访问,其中每个对象只被访问一次。
从结果开始的范围内的对象被修改。
异常安全
如果任何函数调用赋值或迭代器上的操作抛出异常,则抛出异常。
请注意,无效参数会导致未定义的行为。
例子1
让我们看一个简单的例子来演示 transform() 的使用:
#include <algorithm>
#include <iostream>
#include <vector>
#include <string>
#include <iterator>
using namespace std;
int main() {
vector<int> v = { 3,1,4 };
vector<string> result;
transform(v.begin(), v.end(), back_inserter(result),
[](int x) { return to_string(x * 2); });
for_each(result.begin(), result.end(),
[](const string& s) { cout << s << endl; });
}
输出:
6 2 8
例子2
让我们看另一个简单的例子:
#include <algorithm>
#include <iostream>
#include <vector>
#include <string>
#include <iterator>
using namespace std;
int main() {
vector<char> v1 = { 'a','b','c' };
vector<int> v2 = { 3,1,4 };
vector<string> result;
transform(v1.begin(), v1.end(), v2.begin(), back_inserter(result),
[](char a, int b) { return string(b, a); });
for_each(result.begin(), result.end(),
[](const string& s) { cout << s << endl; });
return 0;
}
输出:
aaa b cccc
例子3
让我们看另一个简单的例子:
#include <iostream>
#include <algorithm>
#include <vector>
#include <functional>
#include <iterator>
#include <iomanip>
#include <cmath>
using namespace std;
typedef const vector <int>& vecref;
int power(int a, int b)
{
return pow(a, b);
}
void print(vecref a, vecref b, vecref c)
{
cout << "b[i] a[i] c[i]" << endl;
for(int i = 0; i < a.size(); i++)
{
cout << setw(2) << setfill(' ') << a[i] << " ^ "
<< setw(1) << setfill(' ') << b[i] << " = "
<< setw(2) << setfill(' ') << c[i] << endl;
}
}
int main()
{
vector <int> a(10), b(10), c(10);
for (int i = 0; i < 10 ;i++)
{
a[i] = (i % 2 + 1);
b[i] = (i % 3 + 1);
}
// Save the result in vector c
cout << "Transform operation" << endl;
transform(b.begin(), b.end(), a.begin(), c.begin(), power);
print(b, a, c);
return 0;
}
输出:
Transform operation b[i] a[i] c[i] 1 ^ 1 = 1 2 ^ 2 = 4 3 ^ 1 = 3 1 ^ 2 = 1 2 ^ 1 = 2 3 ^ 2 = 9 1 ^ 1 = 1 2 ^ 2 = 4 3 ^ 1 = 3 1 ^ 2 = 1
上面的例子说明了 transform() 算法。该程序创建了两个向量,并通过插入一个值来转换第三个向量,该值等于第一个向量上升到第二个向量中元素的幂。函数 power 作为谓词传递给函数 transform()。
示例 4
让我们看另一个简单的例子:
#include <iostream> // cout
#include <algorithm> // transform
#include <vector> // vector
#include <functional> // plus
using namespace std;
int op_increase (int i) { return ++i; }
int main () {
vector<int> foo;
vector<int> bar;
// set some values:
for (int i=1; i<6; i++)
foo.push_back (i*10); // foo:10 20 30 40 50
bar.resize(foo.size()); // allocate space
transform (foo.begin(), foo.end(), bar.begin(), op_increase);
// bar:11 21 31 41 51
// plus adds together its two arguments:
transform (foo.begin(), foo.end(), bar.begin(), foo.begin(), plus<int>());
// foo:21 41 61 81 101
cout << "foo contains:";
for (vector<int>::iterator it=foo.begin(); it!=foo.end(); ++it)
cout << ' ' << *it;
cout << '\n';
return 0;
}
输出:
foo contains:21 41 61 81 101
相关用法
- C++ Algorithm remove_if()用法及代码示例
- C++ Algorithm remove()用法及代码示例
- C++ Algorithm max_element()用法及代码示例
- C++ Algorithm set_union()用法及代码示例
- C++ Algorithm next_permutation()用法及代码示例
- C++ Algorithm upper_bound()用法及代码示例
- C++ Algorithm minmax()用法及代码示例
- C++ Algorithm remove_copy_if()用法及代码示例
- C++ Algorithm random_shuffle()用法及代码示例
- C++ Algorithm pop_heap()用法及代码示例
- C++ Algorithm replace()用法及代码示例
- C++ Algorithm set_intersection()用法及代码示例
- C++ Algorithm lower_bound()用法及代码示例
- C++ Algorithm set_difference()用法及代码示例
- C++ Algorithm is_sorted()用法及代码示例
- C++ Algorithm equal_range()用法及代码示例
- C++ Algorithm minmax_element()用法及代码示例
- C++ Algorithm stable_sort()用法及代码示例
- C++ Algorithm min()用法及代码示例
- C++ Algorithm stable_partition()用法及代码示例
注:本文由纯净天空筛选整理自 C++ Algorithm transform()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。