Use equal_range to determine both the lower- and upper-bound insertion points

Started by aruljothi, Jun 11, 2009, 09:39 PM

Previous topic - Next topic

aruljothi



#include <iostream>
using std::cout;
using std::endl;

#include <algorithm>
#include <vector>
#include <iterator>

int main()
{
   int a1[ 10 ] = { 2, 2, 4, 4, 4, 6, 6, 6, 6, 8 };
   std::vector< int > v( a1, a1 + 10 );
   std::ostream_iterator< int > output( cout, " " );

   std::copy( v.begin(), v.end(), output );

   std::pair< std::vector< int >::iterator, std::vector< int >::iterator > eq;
   eq = std::equal_range( v.begin(), v.end(), 6 );
   cout << "\n\n\nLower bound of 6 is element " << ( eq.first - v.begin() ) << " of vector v \n\n\n";
   cout << "Upper bound of 6 is element " << ( eq.second - v.begin() ) << " of vector v";

   return 0;
}