std::min_element en C++

Para calcular el más pequeño de todos los elementos en una lista dada, tenemos std::min , pero ¿qué pasa si queremos encontrar el más pequeño no en toda la lista, sino en una subsección de la lista ? Para cumplir con este propósito, tenemos std::min_element en C++.

std::min_element se define dentro del archivo de encabezado <algoritmo> y devuelve un iterador que apunta al elemento con el valor más pequeño en el rango [primero, último].

A diferencia de std::min, que se puede usar de tres formas, std::min_element se puede usar de dos formas . Las comparaciones se pueden realizar usando el operador < (primera versión), o usando una función predefinida (segunda versión). Si más de un elemento cumple la condición de ser el más pequeño, el iterador devuelve puntos al primero de dichos elementos.
Las dos versiones se definen como se indica a continuación:

  1. Para comparar elementos usando “<«:
    Sintaxis:
    template 
    ForwardIterator min_element (ForwardIterator first, ForwardIterator last);
    
    first: Forward iterator pointing to the beginning of the range.
    last: Forward iterator pointing to the end of the range.
    
    Return Value: It return a pointer to the smallest 
    element in the range, and in case if there are more than one such element,
    then it points to the first one.
    It points to the last in case the range is empty.
    

    // C++ program to demonstrate the use of std::min_element
    #include <iostream>
    #include <algorithm>
    using namespace std;
    int main()
    {
        int v[] = { 9, 4, 7, 2, 5, 10, 11, 12, 1, 3, 6 };
      
        // Finding the minimum value between the third and the
        // fifth element
      
        int* i1;
        i1 = std::min_element(v + 2, v + 5);
      
        cout << *i1 << "\n";
        return 0;
    }

    Producción:

    2
    
  2. Para la comparación basada en una función predefinida:

    Sintaxis:

    template 
    ForwardIterator min_element (ForwardIterator first, ForwardIterator last,
                                 Compare comp);
    Here, first and last are the same as previous case.
    comp: Binary function that accepts two elements 
    in the range as arguments, and returns a value convertible to bool.
    The value returned indicates whether the element passed as first 
    argument is considered less than the second.
    The function shall not modify any of its arguments.
    This can either be a function pointer or a function object.
    
    Return Value: It return a pointer to the smallest element 
    in the range, and in case if there are more than one such element,
    then it points to the first one.
    It points to the last in case the range is empty.
    

    // C++ program to demonstrate the use of std::min_element
    #include <iostream>
    #include <algorithm>
    using namespace std;
      
    // Defining the BinaryFunction
    bool comp(int a, int b)
    {
        return (a < b);
    }
      
    int main()
    {
        int v[] = { 9, 4, 7, 2, 5, 10, 11, 12, 1, 3, 6 };
      
        // Finding the minimum value between the third and the
        // ninth element
      
        int* i1;
        i1 = std::min_element(v + 2, v + 9, comp);
      
        cout << *i1 << "\n";
        return 0;
    }

    Producción:

    1
    

Artículos relacionados:

Este artículo es una contribución de Mrigendra Singh . Si le gusta GeeksforGeeks y le gustaría contribuir, también puede escribir un artículo usando contribuya.geeksforgeeks.org o envíe su artículo por correo a contribuya@geeksforgeeks.org. Vea su artículo que aparece en la página principal de GeeksforGeeks y ayude a otros Geeks.

Escriba comentarios si encuentra algo incorrecto o si desea compartir más información sobre el tema tratado anteriormente.

Publicación traducida automáticamente

Artículo escrito por GeeksforGeeks-1 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *