replace_if

则只要满足指定的特性,检查中的每个元素并替换它。

template<class ForwardIterator, class Predicate, class Type>
   void replace_if(
      ForwardIterator _First, 
      ForwardIterator _Last,
      Predicate _Pred, 
      const Type& _Val
   );

参数

  • _First
    指向第一个元素的位置仅向前迭代器在元素中替换的范围。

  • _Last
    指向通过最终元素的位置一的迭代器在元素中替换的范围。

  • _Pred
    必须满足的一元谓词变为元素的值将被替换。

  • _Val
    分配给旧值满足谓词的元素的新值。

备注

引用的范围必须是有效的;所有指针必须dereferenceable,并在该序列中最后位置以访问按增量。

未替换元素的顺序保持不变。

算法 replace_if 是算法 replace的泛化,这允许任何谓词指定,而不是相等到指定的常数值。

用于的 operator== 确定在元素相等必须实施在其操作数之间的等效性关系。

复杂的线性:具有(_Last – _First)相等性比较和最多_Last (–) _First新的值的赋值。

示例

// alg_replace_if.cpp
// compile with: /EHsc
#include <vector>
#include <algorithm>
#include <iostream>

bool greater6 ( int value ) {
   return value >6;
}

int main( ) {
   using namespace std;
   vector <int> v1;
   vector <int>::iterator Iter1;

   int i;
   for ( i = 0 ; i <= 9 ; i++ )
      v1.push_back( i );

   int ii;
   for ( ii = 0 ; ii <= 3 ; ii++ )
      v1.push_back( 7 );
   
   random_shuffle ( v1.begin( ), v1.end( ) );
   cout << "The original vector v1 is:\n ( " ;
   for ( Iter1 = v1.begin( ) ; Iter1 != v1.end( ) ; Iter1++ )
      cout << *Iter1 << " ";
   cout << ")." << endl;

   // Replace elements satisfying the predicate greater6
   // with a value of 70
   replace_if ( v1.begin( ), v1.end( ), greater6 , 70);

   cout << "The vector v1 with a value 70 replacing those\n "
        << "elements satisfying the greater6 predicate is:\n ( " ;
   for ( Iter1 = v1.begin( ) ; Iter1 != v1.end( ) ; Iter1++ )
      cout << *Iter1 << " ";
   cout << ")." << endl;
}

示例输出

The original vector v1 is:
 ( 7 1 9 2 0 7 7 3 4 6 8 5 7 7 ).
The vector v1 with a value 70 replacing those
 elements satisfying the greater6 predicate is:
 ( 70 1 70 2 0 70 70 3 4 6 70 5 70 70 ).

要求

标头: <algorithm>

命名空间: std

请参见

参考

replace_if (STL Samples)

标准模板库