std::partial_sort_copy en C++

std::partial_sort se usa para ordenar el rango dentro de todo el contenedor. Entonces, si queremos mantener intacto el contenedor original y simplemente copiar la subparte ordenada del contenedor en otro, entonces para ese propósito, podemos usar std::partial_sort_copy .

Al igual que std::partial_sort, parcial_sort_copy() se puede usar de dos maneras, como se muestra a continuación:

  1. Comparando elementos usando <:

    Sintaxis:

    Template 
    RandomAccessIterator partial_sort_copy (InputIterator first, InputIterator last,
                                            RandomAccessIterator result_first,
                                            RandomAccessIterator result_last);
    
    first: Input iterator to the first element in the container.
    last: Input iterator to the last element in the container.
    result_first: Random-Access iterator pointing to the initial
    position in the destination container.
    result_last: Random-Access iterator pointing to the final
    position in the destination container.
    
    Return Value: It returns an iterator pointing to the element that 
    follows the last element written in the result sequence.
    

    // C++ program to demonstrate the use of
    // std::partial_sort_copy
    #include <iostream>
    #include <vector>
    #include <algorithm>
    using namespace std;
    int main()
    {
        vector<int> v = { 1, 1, 3, 10, 3, 3, 7, 7, 8 }, v1(3);
      
        vector<int>::iterator ip;
      
        // Using std::partial_sort_copy
        std::partial_sort_copy(v.begin(), v.end(), v1.begin(), v1.end());
      
        // Displaying the vector after applying
        // std::partial_sort_copy
        for (ip = v1.begin(); ip != v1.end(); ++ip) {
            cout << *ip << " ";
        }
      
        return 0;
    }

    Producción:

    1 1 3
    

    Aquí, ya que declaramos que v1 es de tamaño 3, por lo que solo se almacenaron tres elementos en él.

  2. Al comparar usando una función predefinida:

    Sintaxis:

    Template
     RandomAccessIterator partial_sort_copy (InputIterator first, InputIterator last,
                                             RandomAccessIterator result_first,
                                             RandomAccessIterator result_last,
                                             Compare comp);
    
    Here, first, last, result_first and result_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 to go before the second in the specific
    strict weak ordering it defines.
    The function shall not modify any of its arguments.
    This can either be a function pointer or a function object.
    
    Return Value: It returns an iterator pointing to the element that 
    follows the last element written in the result sequence.
    

    // C++ program to demonstrate the use of
    // std::partial_sort_copy
    #include <iostream>
    #include <algorithm>
    #include <vector>
    using namespace std;
      
    // Defining the BinaryFunction
    bool comp(int a, int b)
    {
        return (a < b);
    }
      
    int main()
    {
        vector<int> v = { 1, 1, 3, 10, 3, 3, 7, 7, 8 }, v1(7);
      
        vector<int>::iterator ip;
      
        // Using std::partial_sort_copy
        std::partial_sort_copy(v.begin(), v.end(), v1.begin(),
                               v1.end(), comp);
      
        // Displaying the vector after applying
        // std::partial_sort_copy
        for (ip = v1.begin(); ip != v1.end(); ++ip) {
            cout << *ip << " ";
        }
      
        return 0;
    }

    Producción:

    1 1 3 3 3 7 7
    

¿Dónde usarlo?

  • Para copiar el rango ordenado: Entonces, siempre que queramos que el contenedor original permanezca sin cambios después de la clasificación y que el resultado de sort_parcial se almacene dentro de otro contenedor, entonces podemos usar esto.

    // C++ program to demonstrate the use of
    // std::partial_sort_copy
    #include <iostream>
    #include <vector>
    #include <algorithm>
    using namespace std;
    int main()
    {
        vector<int> v = { 100, 45, 78, 23, 220 }, v1(5);
      
        vector<int>::iterator ip;
      
        // Using std::partial_sort_copy
        std::partial_sort_copy(v.begin(), v.end(), v1.begin(),
                               v1.end());
      
        // Displaying the vectors after applying
        // std::partial_sort_copy
        cout << "v = ";
      
        for (ip = v.begin(); ip != v.end(); ++ip) {
            cout << *ip << " ";
        }
      
        cout << "\nv1 = ";
        for (ip = v1.begin(); ip != v1.end(); ++ip) {
            cout << *ip << " ";
        }
        return 0;
    }

    Producción:

    v = 100 45 78 23 220
    v1 = 23 45 78 100 220
    

    Entonces, aquí v permaneció igual, y su forma ordenada se almacena en v1.

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 *