Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

c++ max and min of vector

#include <iostream>
#include <algorithm>

template <typename T, size_t N> const T* mybegin(const T (&a)[N]) { return a; }    
template <typename T, size_t N> const T* myend  (const T (&a)[N]) { return a+N; }

int main()
{
    const int cloud[] = { 1,2,3,4,-7,999,5,6 };

    std::cout << *std::max_element(mybegin(cloud), myend(cloud)) << '
';
    std::cout << *std::min_element(mybegin(cloud), myend(cloud)) << '
';
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #max #min #vector
ADD COMMENT
Topic
Name
5+7 =