Locate maximum element in a vector : vector find « Vector « C++






Locate maximum element in a vector

  
 

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

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

int main()
{
   std::ostream_iterator< int > output( cout, " " );

   int a2[ 10 ] = { 100, 2, 8, 1, 50, 3, 8, 8, 9, 10 };
   std::vector< int > v2( a2, a2 + 10 ); // copy of a2
   cout << "\n\nVector v2 contains: ";
   std::copy( v2.begin(), v2.end(), output );

   // locate maximum element in v2
   cout << "\nMaximum element in Vector v2 is: "
      << *( std::max_element( v2.begin(), v2.end() ) );

   cout << endl;
   return 0;
}

/* 


Vector v2 contains: 100 2 8 1 50 3 8 8 9 10
Maximum element in Vector v2 is: 100

 */        
    
  








Related examples in the same category

1.Locate minimum element in a vector
2.Demonstrating the generic find algorithm with a vector
3.Find the min value in the vector
4.Find the max value in the vector
5.Find the first pair of matching consecutive elements
6.Find the first of two values
7.Find the first subsequence
8.Find the last subsequence (which should be the same as the first)
9.Find the first subsequence of two consecutive 8s
10.Binary search a vector
11.Search the vector for the elements present in the list
12.Returns the positions of all values within a range