當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ Algorithm replace_if()用法及代碼示例


C++ 算法 replace_if() 函數用於將 new_value 分配給 [first, last) 範圍內 pred 謂詞返回 true 的所有元素。

此函數檢查範圍內的每個元素,如果滿足指定的謂詞,則替換它。

用法

template <class ForwardIterator, class UnaryPredicate, class T>
void replace_if (ForwardIterator first, ForwardIterator last,
UnaryPredicate pred, const T& new_value );

參數

first:一個前向迭代器,指向元素被替換的範圍內的初始位置。

last:一個前向迭代器,指向元素被替換的範圍內的最終位置。

pred: 必須滿足的一元謂詞函數是要替換元素的值。

new_value:分配給舊值滿足謂詞的元素的新值。

返回值

複雜度

複雜性在 first 和 last 之間的距離上是線性的。將 pred 應用於每個元素並分配給那些匹配的元素。

數據競爭

範圍 [first1, last1) 中的對象被訪問並可能被修改。

異常安全

如果任何 pred、元素分配或迭代器上的操作引發異常,則此函數將引發異常。

請注意,無效參數會導致未定義的行為。

例子1

讓我們看一個簡單的例子來演示 replace_if() 的使用:

#include <algorithm>
#include <iostream>
#include <vector>

using namespace std;

int main() {
  vector<int> v = { 3,1,2,1,2 };

  replace_if(v.begin(), v.end(),
    [](int x) { return x%2 != 0; }, 10);

  for_each(v.begin(), v.end(),
    [](int x) { cout << x << ","; });
    
    return 0;
}

輸出:

10,10,2,10,2,

上麵的例子從向量 v 確定奇數,並用 10 替換所有找到的元素。

例子2

讓我們看另一個簡單的例子:

#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;  
   
   return 0;
}

輸出:

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

在上麵的例子中,向量 v1 用一個值 70 替換那些滿足更大 6 謂詞的元素。

例子3

讓我們看另一個簡單的例子:

#include <iostream>
#include <vector>
#include <algorithm>
 
using namespace std;
 
bool isDivisibleByThree
(
  int n //in
)
{
  return (n%3 == 0);
}
 
int main()
{
  int a[] = {1, 2, 2, 3, 4, 5, 2, 6};
  vector<int> v(a, a+8);
 
  cout <<"\nHere are the values in the vector:\n";
  for (vector<int>::size_type i=0; i<v.size(); i++)
    cout <<v.at(i)<<" ";
 
  cout <<"\nNow we replace all values divisble by 3 with 123.";
  replace_if(v.begin(), v.end(), isDivisibleByThree, 123);
 
  cout <<"\nHere are the revised contents of the vector:\n";
  for (vector<int>::size_type i=0; i<v.size(); i++)
    cout <<v.at(i)<<" ";
 
  return 0;
}

輸出:

Here are the values in the vector:
1 2 2 3 4 5 2 6 
Now we replace all values divisible by 3 with 123.
Here are the revised contents of the vector:
1 2 2 123 4 5 2 123  

示例 4

讓我們看另一個簡單的例子:

#include <iostream>     // std::cout
#include <algorithm>    // std::replace_if
#include <vector>       // std::vector

using namespace std;

bool IsOdd (int i) { return ((i%2)==1); }

int main () {
  vector<int> myvector;

  // set some values:
  for (int i=1; i<10; i++) myvector.push_back(i);               // 1 2 3 4 5 6 7 8 9

  replace_if (myvector.begin(), myvector.end(), IsOdd, 0); // 0 2 0 4 0 6 0 8 0

  cout << "myvector contains:";
  for (vector<int>::iterator it=myvector.begin(); it!=myvector.end(); ++it)
    cout << ' ' << *it;
  cout << '\n';

  return 0;
}

輸出:

myvector contains:0 2 0 4 0 6 0 8 0





相關用法


注:本文由純淨天空篩選整理自 C++ Algorithm replace_if()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。