std::is_sorted_hasta que en C++

std::is_sorted_until se usa para encontrar el primer elemento no ordenado en el rango [primero, último]. Devuelve un iterador al primer elemento no ordenado del rango, por lo que se ordenan todos los elementos entre el primero y el iterador devuelto.
También se puede utilizar para contar el número total. de elementos ordenados en el rango. Se define dentro del archivo de cabecera. En caso de que se ordene todo el rango, devolverá un iterador que apunta al último.
Se puede utilizar de dos formas como se muestra a continuación: 

Comparación de elementos usando “<“:  
Sintaxis: 

template 
ForwardIterator is_sorted_until (ForwardIterator first, ForwardIterator last);

first: Forward iterator to the first element in the list.
last: forward iterator to the last element in the list.

Return Value: It returns an iterator to the first 
unsorted element in the list.
It returns last in case if there is only one element in 
the list or if all the elements are sorted.

CPP

// C++ program to demonstrate the use of std::is_sorted_until
#include <iostream>
#include <algorithm>
using namespace std;
int main()
{
    int v[] = { 1, 2, 3, 4, 7, 10, 8, 9 }, i;
 
    int* ip;
 
    // Using std::is_sorted_until
    ip = std::is_sorted_until(v, v + 8);
 
    cout << "There are " << (ip - v) << " sorted elements in "
         << "the list and the first unsorted element is " << *ip;
 
    return 0;
}

Producción: 

There are 6 sorted elements in the list and the first unsorted element is 8

Comparando usando una función predefinida:
Sintaxis:

template 
 ForwardIterator is_sorted_until (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 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 
to the first unsorted element in the list.
It returns last in case if there is only one element in 
the list or if all the elements are sorted.

CPP

// C++ program to demonstrate
// the use of std::nth_element
// C++ program to demonstrate the
// use of std::nth_element
#include <algorithm>
#include <iostream>
using namespace std;
 
// Defining the BinaryFunction
bool comp(int a, int b) { return (a < b); }
int main()
{
    int v[] = { 1, 3, 20, 10, 45, 33, 56, 23, 47 }, i;
    int* ip;
 
    // Using std::is_sorted_until
    ip = std::is_sorted_until(v, v + 9, comp);
 
    cout << "There are " << (ip - v)
         << " sorted elements in "
         << "the list and the first unsorted element is "
         << *ip;
 
    return 0;
}

Producción:

There are 3 sorted elements in the list and the first unsorted element is 10

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 *