find the smallest number : vector find « vector « C++ Tutorial






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

using namespace std;

template <class T>
void print(T& c){
   for( typename T::iterator i = c.begin(); i != c.end(); i++ ){
      std::cout << *i << endl;
   }
}

int main( )
{
   vector<double> v( 5, 2.78 );
   v[2] = 0.0;

   // make the vector as large as possible without reallocating
   v.resize( v.capacity(), 2.78 );

   // find the smallest number
   vector<double>::iterator before_itr = min_element( v.begin(), v.end() );

}








16.14.vector find
16.14.1.Locate maximum element in a vector
16.14.2.Locate minimum element in a vector
16.14.3.find the smallest number
16.14.4.Find a sample integer '3' in the vector using the 'find' algorithm
16.14.5.Find the first even number in the collection
16.14.6.Demonstrating the generic find algorithm with a vector