Dada una array arr[], encuentre el elemento mínimo y máximo de esta array usando STL en C++.
Ejemplo:
Input: arr[] = {1, 45, 54, 71, 76, 12} Output: min = 1, max = 76 Input: arr[] = {10, 7, 5, 4, 6, 12} Output: min = 4, max = 12
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, last); *max_element (first, last);
Para usar *min_element() y *max_element() debe incluir «algoritmo» como archivo de encabezado.
El rango utilizado es [primero, último], que contiene todos los elementos entre primero y último, incluido el elemento señalado por primero pero no el elemento señalado por último.
A continuación se muestra la implementación del enfoque anterior:
CPP
// C++ program to find the min and max element // of Array using sort() in STL #include <bits/stdc++.h> using namespace std; int main() { // Get the array int arr[] = { 1, 45, 54, 71, 76, 12 }; // Compute the sizes int n = sizeof(arr) / sizeof(arr[0]); // Print the array cout << "Array: "; for (int i = 0; i < n; i++) cout << arr[i] << " "; // Find the minimum element cout << "\nMin Element = " << *min_element(arr, arr + n); // Find the maximum element cout << "\nMax Element = " << *max_element(arr, arr + n); // Storing the pointer in an address int &min = *min_element(arr,arr+n ); int &max = *max_element(arr,arr+n ); cout<<"\nFinding the Element using address variable"; cout<<"\nMin Element = "<<min; cout<<"\nMax Element = "<<max; return 0; }
Producción
Array: 1 45 54 71 76 12 Min Element = 1 Max Element = 76 Finding the Element using address variable Min Element = 1 Max Element = 76
Complejidad temporal: O(N)
Espacio auxiliar: O(1)