◐ Shell
clean mode source ↗

std::qsort - cppreference.com

De cppreference.com

Esta página se ha traducido por ordenador/computador/computadora de la versión en inglés de la Wiki usando Google Translate.

La traducción puede contener errores y palabras aparatosas/incorrectas. Planea sobre el texto para ver la versión original. Puedes ayudar a corregir los errores y mejorar la traducción. Para instrucciones haz clic aquí.

Definido en el archivo de encabezado <cstdlib>

void qsort( const void *ptr, size_t count, size_t size, int (*comp)(const void *, const void *) );

Ordena el array dado que apunta ptr en orden ascendente. La matriz contiene elementos count de size tamaño. Función a la que apunta comp se utiliza para la comparación de objetos .

Original:

Sorts the given array pointed to by ptr in ascending order. The array contains count elements of size size. Function pointed to by comp is used for object comparison.

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Parámetros

ptr -

puntero a la matriz a ordenar

Original:

pointer to the array to sort

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

count -

número de elemento de la matriz

Original:

number of element in the array

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

size -

tamaño de cada elemento de la matriz en bytes

Original:

size of each element in the array in bytes

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

comp - función de comparación que devuelve un valor entero negativo si el primer argumento es menor que el segundo, devuelve un valor entero positivo si el primer argumento es mayor que el segundo y cero si los argumentos son iguales.

La identificación de la función de comparación debe ser equivalente a la siguiente:

int cmp(const void *a, const void *b);

La función no debe modificar los objetos que se le pasan y debe devolver resultados consistentes cuando se le piden los mismos objetos, independientemente de su posición en la matriz.

Valor de retorno

(Ninguno)

Original:

(none)

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Notas

El tipo de los elementos de la matriz debe ser de un tipo trivial', de lo contrario el comportamiento es indefinido .

Original:

The type of the elements of the array must be a trivial type, otherwise the behavior is undefined.

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Ejemplo

El código siguiente, una matriz de enteros utilizando qsort() .

Original:

The following code sorts an array of integers using qsort().

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

#include <iostream>
#include <cstdlib>
 
int compare_ints(const void* a, const void* b)   // comparison function
{
    int* arg1 = (int*) a;
    int* arg2 = (int*) b;
    if (*arg1 < *arg2) return -1;
    else if (*arg1 == *arg2) return 0;
    else return 1;
}
 
int main()
{
    int a[] = { -2, 99, 0, -743, 2, 3, 4 };
    int size = 7;
 
    std::qsort(a, size, sizeof(int), compare_ints);
 
    for (int i = 0; i < size; i++) {
        std::cout << a[i] << " ";
    }
    std::cout << '\n';
}

Salida:

Ver también

Busca en un array por un elemento de tipo no especificado.
(función) [editar]

Ordena un intervalo en orden ascendente

Original:

sorts a range into ascending order

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(plantilla de función) [editar]

Comprueba si un tipo es trivial

Original:

checks if a type is trivial

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(plantilla de clase) [editar]