c++ find minimum value in vector
#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
int main()
{
vector<int> a = {1,5,6,7,8,3};
cout << *min_element(a.begin(), a.end());
return 0;
}
c++ find minimum value in vector
#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
int main()
{
vector<int> a = {1,5,6,7,8,3};
cout << *min_element(a.begin(), a.end());
return 0;
}
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)) << '\n';
std::cout << *std::min_element(mybegin(cloud), myend(cloud)) << '\n';
}
c++ max and min of vector
auto it = max_element(std::begin(cloud), std::end(cloud)); // c++11
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us