다음을 통해 공유


equal

요소 별로 같음 또는 등가 이진 조건자에 지정 된 점에서 두 범위를 비교 합니다.

template<class InputIterator1, class InputIterator2>
   bool equal(
      InputIterator1 _First1, 
      InputIterator1 _Last1, 
      InputIterator2 _First2
   );
template<class InputIterator1, class InputIterator2, class BinaryPredicate>
   bool equal(
      InputIterator1 _First1, 
      InputIterator1 _Last1, 
      InputIterator2 _First2, 
      BinaryPredicate _Comp
   );

매개 변수

  • _First1
    테스트할 첫 번째 요소의 위치는 첫 번째 범위에서 주소 입력된 반복기입니다.

  • _Last1
    테스트할 위치 하나 지나서 마지막 요소는 첫 번째 범위에서 주소 입력된 반복기입니다.

  • _First2
    테스트할 첫 번째 요소의 위치를 두 번째 범위에서 주소 입력된 반복기입니다.

  • _Comp
    경우 두 요소에 만족 하는 조건을 정의 하는 조건자 함수의 사용자 정의 개체는 해당 하는.두 인수를 사용 하 고 반환 하는 이진 술 부 true 만족 스 러 우면 및 거짓 만족 하지 않을 때.

반환 값

true 이면 범위의 동일한 것인지 비교할 때 이진 조건부에 해당 하는 경우에 요소 요소 별로. 그렇지 않으면 거짓.

설명

검색할 범위의 유효 해야 합니다. 모든 포인터는 dereferenceable 이어야 하 고 마지막 위치에서 첫 번째 접근할 여 증분 합니다.

알고리즘의 시간 복잡도 선형의 범위에 포함 된 요소 수입니다.

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

예제

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

// Return whether second element is twice the first
bool twice ( int elem1, int elem2 )
{
   return elem1 * 2 == elem2;
}

int main( )
{
   using namespace std;
   vector <int> v1, v2, v3;
   vector <int>::iterator Iter1, Iter2, Iter3;

   int i;
   for ( i = 0 ; i <= 5 ; i++ )
   {
      v1.push_back( 5 * i );
   }

   int ii;
   for ( ii = 0 ; ii <= 5 ; ii++ )
   {
      v2.push_back( 5 * ii );
   }

   int iii;
   for ( iii = 0 ; iii <= 5 ; iii++ )
   {
      v3.push_back( 10 * iii );
   }
   
   cout << "v1 = ( " ;
   for ( Iter1 = v1.begin( ) ; Iter1 != v1.end( ) ; Iter1++ )
      cout << *Iter1 << " ";
   cout << ")" << endl;

   cout << "v2 = ( " ;
   for ( Iter2 = v2.begin( ) ; Iter2 != v2.end( ) ; Iter2++ )
      cout << *Iter2 << " ";
   cout << ")" << endl;

   cout << "v3 = ( " ;
   for ( Iter3 = v3.begin( ) ; Iter3 != v3.end( ) ; Iter3++ )
      cout << *Iter3 << " ";
   cout << ")" << endl;

   // Testing v1 and v2 for equality under identity
   bool b;
   b = equal( v1.begin( ), v1.end( ), v2.begin( ) );

   if ( b )
      cout << "The vectors v1 and v2 are equal under equality."
           << endl;
   else
      cout << "The vectors v1 and v2 are not equal under equality."
           << endl;

   // Testing v1 and v3 for equality under identity
   bool c;
   c = equal( v1.begin( ), v1.end( ), v3.begin( ) );

   if ( c )
      cout << "The vectors v1 and v3 are equal under equality."
           << endl;
   else
      cout << "The vectors v1 and v3 are not equal under equality."
           << endl;

   // Testing v1 and v3 for equality under twice
   bool d;
   d = equal( v1.begin( ), v1.end( ), v3.begin( ), twice );

   if ( d )
      cout << "The vectors v1 and v3 are equal under twice."
           << endl;
   else
      cout << "The vectors v1 and v3 are not equal under twice."
           << endl;
}
  
  
  

요구 사항

헤더: <algorithm>

네임 스페이스: std

참고 항목

참조

표준 템플릿 라이브러리