C++ STL 之 lower_bound and upper_bound

函数lower_bound()在first和last中的前闭后开区间进行二分查找,返回大于或等于val第一个元素位置。如果所有元素都小于val,则返回last的位置

函数upper_bound()返回的在前闭后开区间查找的关键字的上界,返回大于val第一个元素位置,如一个数组number序列1,2,2,4.upper_bound(2)后,返回的位置是3(下标)也就是4所在的位置,同样,如果插入元素大于数组中全部元素,返回的是last。(注意:数组下标越界)

返回查找元素的最后一个可安插位置,也就是“元素值>查找值”的第一个元素的位置

#include <iostream>
#include <algorithm>
#include <functional>
#include <vector>
using namespace std;

int main()
{
    const int VECTOR_SIZE = 8 ;
    typedef vector<int, allocator<int> > IntVector ;
    typedef IntVector::iterator IntVectorIt ;
    IntVector Numbers(VECTOR_SIZE) ;
    IntVectorIt start, end, it, location, location1;
    Numbers[0] = 4 ;
    Numbers[1] = 10;
    Numbers[2] = 10 ;
    Numbers[3] = 30 ;
    Numbers[4] = 69 ;
    Numbers[5] = 70 ;
    Numbers[6] = 96 ;
    Numbers[7] = 100;
    start = Numbers.begin() ; 
    end = Numbers.end() ;     
    cout << "Numbers { " ;
    for(it = start; it != end; it++)
        cout << *it << " " ;
    cout << " }\n" << endl ;
    location = lower_bound(start, end, 9) ;
	location1 = upper_bound(start, end, 10) ;
    cout << "Element 10 can be inserted at index "
        << location - start<< endl ;
	 cout << "Element 10 can be inserted at index "
        << location1 - start<< endl ;
}



你可能感兴趣的:(C++ STL 之 lower_bound and upper_bound)