Dado un vector, encuentre el elemento mínimo y máximo de este vector usando STL en C++. Ejemplo:
Input: {1, 45, 54, 71, 76, 12} Output: min = 1, max = 76 Input: {10, 7, 5, 4, 6, 12} Output: min = 1, max = 76
Acercarse:
- El elemento mínimo o mínimo se puede encontrar con la ayuda de la función *min_element() proporcionada en STL.
- El elemento Max o Maximum se puede encontrar con la ayuda de la función *max_element() proporcionada en STL.
Sintaxis:
*min_element (first_index, last_index); *max_element (first_index, last_index);
A continuación se muestra la implementación del enfoque anterior:
CPP
// C++ program to find the min and max element // of Vector using *min_element() in STL #include <bits/stdc++.h> using namespace std; int main() { // Get the vector vector<int> a = { 1, 45, 54, 71, 76, 12 }; // Print the vector cout << "Vector: "; for (int i = 0; i < a.size(); i++) cout << a[i] << " "; cout << endl; // Find the min element cout << "\nMin Element = " << *min_element(a.begin(), a.end()); // Find the max element cout << "\nMax Element = " << *max_element(a.begin(), a.end()); return 0; }
Producción:
Vector: 1 45 54 71 76 12 Min Element = 1 Max Element = 76
Complejidad temporal: O(N)
Espacio auxiliar: O(1)