共用方式為


replace_if

如果滿足指定的述詞,檢查在範圍內的每個項目並取代它。

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

參數

  • _First
    指向第一個項目位置的正向 iterator 項目取代的範圍。

  • _Last
    指向超過最後一項目的位置的 Iterator 在項目取代的範圍。

  • _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 範例)

標準樣板程式庫