次の方法で共有


replace

ある値と一致する範囲と置換の各要素を、チェックします。

template<class ForwardIterator, class Type>
   void replace(
      ForwardIterator _First, 
      ForwardIterator _Last,
      const Type& _OldVal, 
      const Type& _NewVal
   );

パラメーター

  • _First
    要素が置き換えられている範囲の先頭の要素の位置を指す前方反復子。

  • _Last
    要素が置き換えられている範囲の最後の要素の一つ前の位置に 1 が指している前方反復子。

  • _OldVal
    置き換える要素の古い値。

  • _NewVal
    古い値を持つ要素に割り当てられた新しい値。

解説

参照される範囲が有効である必要があります; すべてのポインターが dereferenceable なり、シーケンス内で最後の位置は incrementation によって最初からアクセスできます。

置き換えられなかった要素の順序の安定性維持されます。

要素間の等価性を判断するために使用される operator== がオペランド間の等価関係を課さなければ必要があります。

複雑度は、線形;。(_Last – _First) の等価性比較が最大で_Last  (– _First) 新しい値の割り当てです。

使用例

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

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 with a value of 7 with a value of 700
   replace (v1.begin( ), v1.end( ), 7 , 700);

   cout << "The vector v1 with a value 700 replacing that of 7 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 700 replacing that of 7 is:
 ( 700 1 9 2 0 700 700 3 4 6 8 5 700 700 ).

必要条件

ヘッダー: <algorithm>

名前空間: std

参照

関連項目

replace (STL Samples)

標準テンプレート ライブラリ