次の方法で共有


replace_copy

結果を新しい先の範囲にコピー中にある値と一致するソース範囲内と置換の各要素を、チェックします。

template<class InputIterator, class OutputIterator, class Type>
   OutputIterator replace_copy(
      InputIterator _First, 
      InputIterator _Last, 
      OutputIterator _Result,
      const Type& _OldVal, 
      const Type& _NewVal
   );

パラメーター

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

  • _Last
    要素が置き換えられている範囲の最後の要素の一つ前の位置 1 を示す入力反復子。

  • _Result
    を指す出力反復子要素の変更後のシーケンスがコピー先の範囲の最初の要素の。

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

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

戻り値

を指す出力反復子要素の変更後のシーケンスがコピー先の範囲の最後の要素の一つ前の位置に 1。

解説

参照される元とコピー先の範囲を指定し、両方が有効である必要があります: すべてのポインターが dereferenceable なり、シーケンス内で最後の位置は incrementation によって最初からアクセスできます。

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

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

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

replace_copy 2 に関連する二つの形式があります:

ついては、これらの関数がどのようにするか、チェックを行う反復子を参照してください。

使用例

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

int main( ) {
   using namespace std;
   vector <int> v1;
   list <int> L1 (15);
   vector <int>::iterator Iter1;
   list <int>::iterator L_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( ) );

   int iii;
   for ( iii = 0 ; iii <= 15 ; iii++ )
      v1.push_back( 1 );

   cout << "The original vector v1 is:\n ( " ;
   for ( Iter1 = v1.begin( ) ; Iter1 != v1.end( ) ; Iter1++ )
      cout << *Iter1 << " ";
   cout << ")." << endl;

   // Replace elements in one part of a vector with a value of 7
   // with a value of 70 and copy into another part of the vector
   replace_copy ( v1.begin( ), v1.begin( ) + 14,v1.end( ) -15, 7 , 70);

   cout << "The vector v1 with a value 70 replacing that of 7 is:\n ( " ;
   for ( Iter1 = v1.begin( ) ; Iter1 != v1.end( ) ; Iter1++ )
      cout << *Iter1 << " ";
   cout << ")." << endl;

   // Replace elements in a vector with a value of 70
   // with a value of 1 and copy into a list
   replace_copy ( v1.begin( ), v1.begin( ) + 14,L1.begin( ), 7 , 1);

   cout << "The list copy L1 of v1 with the value 0 replacing "
        << "that of 7 is:\n ( " ;
   for ( L_Iter1 = L1.begin( ) ; L_Iter1 != L1.end( ) ; L_Iter1++ )
      cout << *L_Iter1 << " ";
   cout << ")." << endl;
}

出力例

The original vector v1 is:
 ( 7 1 9 2 0 7 7 3 4 6 8 5 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ).
The vector v1 with a value 70 replacing that of 7 is:
 ( 7 1 9 2 0 7 7 3 4 6 8 5 7 7 1 70 1 9 2 0 70 70 3 4 6 8 5 70 70 1 ).
The list copy L1 of v1 with the value 0 replacing that of 7 is:
 ( 1 1 9 2 0 1 1 3 4 6 8 5 1 1 0 ).

必要条件

ヘッダー: <algorithm>

名前空間: std

参照

関連項目

replace_copy (STL Samples)

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