Predicate Version of upper_bound

조건자 버전을 사용 하는 방법을 보여 줍니다 있는 upper_bound Visual C++에서 표준 템플릿 라이브러리 (STL) 함수입니다.

template<class ForwardIterator, class T, class Compare>
   inline ForwardIterator upper_bound(
      ForwardIterator First,
      ForwardIterator Last,
      const T& Value,
      Compare Compare
   )

설명

[!참고]

프로토타입에 클래스/매개 변수 이름은 헤더 파일에서 버전이 일치 하지 않습니다.일부 가독성을 높이기 위해 수정 되었습니다.

upper_bound 알고리즘 위치를 반환 합니다 마지막 시퀀스에서 값을 삽입할 수 있습니다 있도록 시퀀스의 순서 [First...Last) 유지 됩니다.upper_bound값 범위 내에 삽입할 수 있는 위치에 배치 된 반복기를 반환 합니다. [First...Last), 또는 반환 Last 와 같은 위치에 있는 경우.이 버전의 범위를 가정 [First...Last) 사용 하 여 순차적으로 정렬 되는 비교 함수입니다.

예제

// upper_boundPV.cpp
// compile with: /EHsc
// Illustrates how to use the predicate version
// of the upper_bound function.
//
// Functions:
//    upper_bound : Return the upper bound within a range.

// disable warning C4786: symbol greater than 255 character,
// okay to ignore
#pragma warning(disable: 4786)

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

using namespace std;


int main()
{
    const int VECTOR_SIZE = 8 ;

    // Define a template class vector of int
    typedef vector<int > IntVector ;

    //Define an iterator for template class vector of strings
    typedef IntVector::iterator IntVectorIt ;

    IntVector Numbers(VECTOR_SIZE) ;

    IntVectorIt start, end, it, location ;

    // Initialize vector Numbers
    Numbers[0] = 4 ;
    Numbers[1] = 10;
    Numbers[2] = 70 ;
    Numbers[3] = 10 ;
    Numbers[4] = 30 ;
    Numbers[5] = 69 ;
    Numbers[6] = 96 ;
    Numbers[7] = 100;

    start = Numbers.begin() ;   // location of first
                                // element of Numbers

    end = Numbers.end() ;       // one past the location
                                // last element of Numbers

    //sort Numbers using the function object less<int>()
    //upper_bound assumes that Numbers is sorted
    //using the "compare" (less<int>() in this case)
    //function
    sort(start, end, less<int>()) ;

    // print content of Numbers
    cout << "Numbers { " ;
    for(it = start; it != end; it++)
        cout << *it << " " ;
    cout << " }\n" << endl ;

    //return the highest location at which 10 can be inserted
    // in Numbers
    location = upper_bound(start, end, 10, less<int>()) ;

    cout << "Last location  for element 10 in Numbers is: "
        << location - start << endl ;
}

Output

Numbers { 4 10 10 30 69 70 96 100  }

Last location  for element 10 in Numbers is: 3

요구 사항

헤더: <algorithm>

참고 항목

개념

표준 템플릿 라이브러리 샘플