다음을 통해 공유


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
    위치 하나 과거 최종 요소 요소에서 교체 범위에서 가리키는 입력된 반복기입니다.

  • _Result
    출력 변경된 시퀀스의 요소를 복사 하는 대상 범위에서 첫 번째 요소를 가리키는 반복기입니다.

  • _OldVal
    바꿀 요소의 이전 값입니다.

  • _NewVal
    이전 값으로 요소에 할당 될 새 값입니다.

반환 값

하나 지난 마지막 요소에서에서 위치 변경된 시퀀스의 요소를 복사 하는 대상 범위를 가리키는 출력 반복기입니다.

설명

모두 유효 해야 하 고 참조 하는 원본 및 대상 범위의 중첩 되지 않아야 합니다: 모든 포인터는 dereferenceable 이어야 하며 시퀀스에서 마지막 위치에서 첫 번째 도달할 수 여 증분 합니다.

대체 요소 순서를 안정적으로 유지 합니다.

operator== 요소가 같은지는 등가 관계 연산자는 피연산자 간의 부과 해야 확인 하는 데 사용 합니다.

복잡 한 선형입니다: 가지 (_Last - _First) 대부분와 같은지 비교 (_Last - _First) 새 값을 할당.

replace_copy두 폼 관련 있습니다.

이러한 함수가 작동 하는 방식에 대 한 내용은 확인 된 반복기.

예제

// 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)

표준 템플릿 라이브러리