c++中transform

  前篇我们已经了解了一种区间元素交换swap_ranges函数,现在我们再来学习另外一种区间元素交换transform。该 算法用于实行容器元素的变换操作。有如下两个使用原型,一个将迭代器区间[first,last)中元素,执行一元函数对象op操作,交换后的结果放在[result,result+(last-first))区间中。另一个将迭代器区间[first1,last1)的元素*i,依次与[first2,first2+(last-first))的元素*j,执行二元函数操作binary_op(*i,*j),交换结果放在[result,result+(last1-first1))。

     函数原型:

[cpp] view plain copy
  1. template < class InputIterator, class OutputIterator, class UnaryOperator >  
  2.   OutputIterator transform ( InputIterator first1, InputIterator last1,  
  3.                              OutputIterator result, UnaryOperator op );  
  4.   
  5. template < class InputIterator1, class InputIterator2,  
  6.            class OutputIterator, class BinaryOperator >  
  7.   OutputIterator transform ( InputIterator1 first1, InputIterator1 last1,  
  8.                              InputIterator2 first2, OutputIterator result,  
  9.                              BinaryOperator binary_op );  

     参数说明:

first1, last1
指出要进行元素变换的第一个迭代器区间 [first1,last1)。
first2
指出要进行元素变换的第二个迭代器区间的首个元素的迭代器位置,该区间的元素个数和第一个区间相等。
 
result
指出变换后的结果存放的迭代器区间的首个元素的迭代器位置
op
用一元函数对象op作为参数,执行其后返回一个结果值。它可以是一个函数或对象内的类重载operator()。
binary_op
用二元函数对象binary_op作为参数,执行其后返回一个结果值。它可以是一个函数或对象内的类重载operator()。

      程序示例:

[cpp] view plain copy
  1. /*******************************************************************   
  2.  * Copyright (C) Jerry Jiang   
  3.  *                  
  4.  * File Name   : transform .cpp   
  5.  * Author      : Jerry Jiang   
  6.  * Create Time : 2012-4-29 22:22:18   
  7.  * Mail        : [email protected]   
  8.  * Blog        : http://blog.csdn.net/jerryjbiao    
  9.  *                  
  10.  * Description : 简单的程序诠释C++ STL算法系列之十八                     
  11.  *               变易算法 : 区间元素交换 transform  
  12.  *                  
  13.  ******************************************************************/      
  14. #include <iostream>  
  15. #include <algorithm>  
  16. #include <vector>  
  17. using namespace std;  
  18.   
  19. int op_increase (int i) { return ++i; }  
  20. int op_sum (int i, int j) { return i+j; }  
  21.   
  22. int main () {  
  23.   vector<int> first;  
  24.   vector<int> second;  
  25.   vector<int>::iterator it;  
  26.   
  27.   // set some values:  
  28.   for (int i=1; i<6; i++) first.push_back (i*10); //  first: 10 20 30 40 50  
  29.   
  30.   second.resize(first.size());     // allocate space  
  31.   transform (first.begin(), first.end(), second.begin(), op_increase);  
  32.                                                   // second: 11 21 31 41 51  
  33.   
  34.   transform (first.begin(), first.end(), second.begin(), first.begin(), op_sum);  
  35.                                                   //  first: 21 41 61 81 101  
  36.   
  37.   cout << "first contains:";  
  38.   for (it=first.begin(); it!=first.end(); ++it)  
  39.     cout << " " << *it;  
  40.   
  41.   cout << endl;  
  42.   return 0;  

你可能感兴趣的:(c++中transform)