std::qsort
Da cppreference.com.
![]() | Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate. La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
Defined in header <cstdlib> | ||
void qsort(constvoid*ptr, size_t count, size_t size, int(*comp)(constvoid*, constvoid*)); | ||
Ordina l'array dato puntato da
ptr
in ordine crescente. La matrice contiene elementi count
di size
dimensioni. Funzione puntato da comp
viene utilizzato per confronto oggetto.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.
You can help to correct and verify the translation. Click here for instructions.
Indice |
[modifica]Parametri
ptr | - | puntatore alla matrice da ordinare 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 | - | numero di elemento della matrice 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 | - | dimensione di ciascun elemento della matrice in byte 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 | - | comparison function which returns a negative integer value if the first argument is less than the second, a positive integer value if the first argument is greater than the second and zero if the arguments are equal. int cmp(constvoid*a, constvoid*b); The function must not modify the objects passed to it. |
[modifica]Valore di ritorno
(Nessuno)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[modifica]Note
Tipo degli elementi della matrice deve essere un banale tipo, altrimenti il comportamento è indefinito.
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.
You can help to correct and verify the translation. Click here for instructions.
[modifica]Esempio
Il codice seguente ordina un array di numeri interi che utilizzano
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.
You can help to correct and verify the translation. Click here for instructions.
#include <iostream>#include <cstdlib> int compare_ints(constvoid* a, constvoid* b)// comparison function{int* arg1 =(int*) a;int* arg2 =(int*) b;if(*arg1 <*arg2)return-1;elseif(*arg1 ==*arg2)return0;elsereturn1;} 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';}
Output:
-743 -2 0 2 3 4 99
[modifica]Vedi anche
cerca una matrice per un elemento di tipo non specificato Original: searches an array for an element of unspecified type The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (funzione) | |
ordina una serie in ordine crescente 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. (funzione di modello) | |
(C++11) | Verifica se un tipo è banale 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. (classe template) |
C documentation for qsort |