logo

qsort() em C

qsort() é uma função padrão predefinida na biblioteca C. Podemos usar esta função para classificar um array em ordem crescente ou decrescente. Ele usa internamente o algoritmo de classificação rápida, daí o nome qsort. Ele pode classificar uma matriz de qualquer tipo de dados, incluindo strings e estruturas. Funciona bem e é eficiente de implementar. Existe uma função sort() em C++ semelhante a qsort() em C. Em aspectos como tempo de execução, segurança e flexibilidade, sort() supera qsort().

Este tutorial explica a função qsort() com exemplos. O padrão C não especificou a complexidade da função, mas como internamente ela segue o algoritmo de classificação rápida, sua complexidade média de tempo é provisoriamente considerada O(n*logn). A função é definida no arquivo de cabeçalho stdlib; portanto, precisamos incluí-lo antes de usá-lo.

 #include 

Sintaxe da função:

 qsort(array, number, size, function) 

variedade : A matriz a ser classificada.

número : Número de elementos no array que queremos classificar

como encontrar números bloqueados no Android

tamanho : Tamanho de um elemento individual da matriz

função : Função de comparação personalizada que precisamos escrever em um formato especificado:

se mais se mais se java

Formato especificado da função:

 int compare( const void* a, const void* b) { } 
  • qsort() chama a função compare() para cada dois elementos do array.
  • Os argumentos aeb são dois ponteiros vazios para apontar para os dois elementos a serem comparados.
  • devemos escrever o corpo de compare() da maneira que ele deve retornar:
    1. 0 se dois elementos forem iguais
    2. -1 ou qualquer outro número inteiro negativo se o primeiro elemento for menor que o segundo elemento
    3. 1 ou qualquer outro número positivo se o primeiro elemento for maior que o segundo.
  • O nome da função de comparação pode ser qualquer coisa, mas o nome deve ser fornecido exatamente como argumento para a função qsort().
  • const void* a significa que a é um ponteiro vazio cujo valor é fixo. Antes de usar, precisamos converter um ponteiro vazio para algum tipo de dados.

Agora, exploraremos as funções para classificar arrays de diferentes tipos de dados.

1. Classificando números inteiros:

 #include #include int compare(const void* num1, const void* num2) // comparing function { int a = *(int*) num1; int b = *(int*) num2; if(a &gt; b) { return 1; } else if(a <b) { return -1; } 0; int main() arr[50], n, i; printf('enter the size of array to be sorted: '); scanf('%d', &n); printf('
enter elements into array: for(i="0;" i < n; i++) &arr[i]); qsort(arr, sizeof(int), compare); printf('
the sorted printf('
['); if(i="=" n-1) prevent a comma(,) after last element printf('%d', arr[i]); break; printf('%d, ', printf(']'); pre> <p> <strong>Output:</strong> </p> <pre> Enter the size of the array to be sorted: 5 Enter elements into the array: 98 34 89 0 2 The sorted array: [0, 2, 34, 89, 98] </pre> <h3>Understanding:</h3> <p>In these two lines:</p> <p> <strong>int a = *(int*) num1;</strong> </p> <p> <strong>int b = *(int*) num2;</strong> </p> <p>The input array is of type . Hence, we must typecast the void pointers into integer pointers before performing any operations to allocate the required memory. We stored the values the two pointers are pointing at in two other integer variables, a and b. Then, we compared both values using the comparison operators.</p> <p>Instead of using two more temporary variables, we can write a one-line code:</p> <pre> int compare(const void* num1, const void* num2) { return *(int*)a - *(int*)b; } </pre> <ul> <li>If a==b, 0 is returned; if a &gt; b, a positive integer is returned; if a <b, a negative integer is returned.< li> </b,></li></ul> <h3>2. Sorting strings</h3> <pre> #include #include #include int compare(const void* num1, const void* num2) { //char **a = (char**)num1; //char **b = (char**)num2; //return strcmp(*a, *b); return strcmp(*(char**)num1, *(char**)num2); } int main() { int n, i; char* arr[50]; printf(&apos;Enter the size of the array to be sorted: &apos;); scanf(&apos;%d&apos;, &amp;n); printf(&apos;
Enter elements into the array: &apos;); for(i = 0; i <n; i++) { arr[i]="malloc(100*" sizeof(char)); scanf('%s', arr[i]); } qsort(arr, n, sizeof(char*), compare); printf('
the sorted array: '); printf('
['); for(i="0;" i < n; if(i="=" n-1) printf('%s', break; printf('%s, ', printf(']'); pre> <p> <strong>Output:</strong> </p> <pre> Enter the size of the array to be sorted: 5 Enter elements into the array: hi hello how are you The sorted array: [are, hello, hi, how, you] </pre> <h3>Understanding:</h3> <ul> <li>We have an array of strings. The difference between an integer array and a string array is that: <ol class="points"> <li>An integer array is a collection of integers</li> <li>A string array is a collection of character arrays/character pointers.</li> </ol></li> <li>Hence, in the compare function, we need to typecast the void pointers to (char**)a and not (char*)a. <br> <strong>[[string 1], [string 2]?]</strong> <br> When we use char*, it points to the array, and then, to point to a string in the array, we need a double pointer.</li> <li>We used the strcmp() function here. The function is defined in the string.h header file. We need to include it first.</li> <tr><td>The function returns</td> : <ol class="points"> <li>0 if both strings are the same</li> <li>1 if the ASCII value of a character in the string is greater than the corresponding character in the second string</li> <li>-1 if the ASCII value of a character in the string is less than the corresponding character in the second string.</li> </ol> </tr></ul> <h3>3. Sorting an Array of Structure</h3> <pre> #include #include struct Structure { int num1; int num2; }s; typedef struct Structure data; int compare(const void* p, const void* q) { data *a = (data *)p; data *b = (data *)q; int first = (a -&gt; num1)- (b -&gt; num1); int second = (a -&gt; num2)- (b -&gt; num2); if(first == 0) { return second; } return first; } int main() { data array[5]; int i = 0; printf(&apos;Original array: 
&apos;); printf(&apos;[[&apos;); for(i = 0; i <5; i++) { array[i].num1="rand()%10;" array[i].num2="rand()%10;" if(i="=" 4) printf('%d, %d]]', array[i].num1, array[i].num2); break; } %d], [', qsort(array, 5, sizeof(s), compare); printf('
sorted array: 
'); printf('[['); for(i="0;" i < 5; pre> <p> <strong>Output:</strong> </p> <pre> Original array: [[1, 7], [4, 0], [9, 4], [8, 8], [2, 4]] Sorted array: [[1, 7], [2, 4], [4, 0], [8, 8], [9, 4]] </pre> <h3>Understanding:</h3> <p>We declared an array of type Structure, meaning every element in the array is an array of structure elements. In the above program, the structure has two integer elements. The task is to sort the array with respect to the first Structure element, and if any two first elements are equal, we need to sort it using the second element.</p> <p> <strong>Example:</strong> </p> <p>[[1, 2], [3, 4], [1, 4]]</p> <p>Sorted array: [[1, 2], [1, 4], [3, 4]]</p> <p>We used the rand() function to generate random elements in the array. In the compare() function, we need to typecast the two pointers to type structure.</p> <img src="//techcodeview.com/img/c-tutorial/30/qsort-c.webp" alt="qsort() in C"> <p>The specialty of using qsort() is the custom compare function that we can design the way we want. We can also sort a few elements in an array and leave the rest unsorted.</p> <hr></5;></pre></n;></pre></b)>

Entendimento:

Nestas duas linhas:

int a = *(int*) num1;

algoritmo de Kruskals

int b = *(int*) num2;

A matriz de entrada é do tipo . Portanto, devemos converter os ponteiros vazios em ponteiros inteiros antes de executar qualquer operação para alocar a memória necessária. Armazenamos os valores para os quais os dois ponteiros apontam em duas outras variáveis ​​​​inteiras, a e b. Em seguida, comparamos os dois valores usando os operadores de comparação.

Em vez de usar mais duas variáveis ​​temporárias, podemos escrever um código de uma linha:

 int compare(const void* num1, const void* num2) { return *(int*)a - *(int*)b; } 
  • Se a==b, 0 será retornado; se a > b, um número inteiro positivo é retornado; se um

2. Classificando strings

 #include #include #include int compare(const void* num1, const void* num2) { //char **a = (char**)num1; //char **b = (char**)num2; //return strcmp(*a, *b); return strcmp(*(char**)num1, *(char**)num2); } int main() { int n, i; char* arr[50]; printf(&apos;Enter the size of the array to be sorted: &apos;); scanf(&apos;%d&apos;, &amp;n); printf(&apos;
Enter elements into the array: &apos;); for(i = 0; i <n; i++) { arr[i]="malloc(100*" sizeof(char)); scanf(\'%s\', arr[i]); } qsort(arr, n, sizeof(char*), compare); printf(\'
the sorted array: \'); printf(\'
[\'); for(i="0;" i < n; if(i="=" n-1) printf(\'%s\', break; printf(\'%s, \', printf(\']\'); pre> <p> <strong>Output:</strong> </p> <pre> Enter the size of the array to be sorted: 5 Enter elements into the array: hi hello how are you The sorted array: [are, hello, hi, how, you] </pre> <h3>Understanding:</h3> <ul> <li>We have an array of strings. The difference between an integer array and a string array is that: <ol class="points"> <li>An integer array is a collection of integers</li> <li>A string array is a collection of character arrays/character pointers.</li> </ol></li> <li>Hence, in the compare function, we need to typecast the void pointers to (char**)a and not (char*)a. <br> <strong>[[string 1], [string 2]?]</strong> <br> When we use char*, it points to the array, and then, to point to a string in the array, we need a double pointer.</li> <li>We used the strcmp() function here. The function is defined in the string.h header file. We need to include it first.</li> <tr><td>The function returns</td> : <ol class="points"> <li>0 if both strings are the same</li> <li>1 if the ASCII value of a character in the string is greater than the corresponding character in the second string</li> <li>-1 if the ASCII value of a character in the string is less than the corresponding character in the second string.</li> </ol> </tr></ul> <h3>3. Sorting an Array of Structure</h3> <pre> #include #include struct Structure { int num1; int num2; }s; typedef struct Structure data; int compare(const void* p, const void* q) { data *a = (data *)p; data *b = (data *)q; int first = (a -&gt; num1)- (b -&gt; num1); int second = (a -&gt; num2)- (b -&gt; num2); if(first == 0) { return second; } return first; } int main() { data array[5]; int i = 0; printf(&apos;Original array: 
&apos;); printf(&apos;[[&apos;); for(i = 0; i <5; i++) { array[i].num1="rand()%10;" array[i].num2="rand()%10;" if(i="=" 4) printf(\'%d, %d]]\', array[i].num1, array[i].num2); break; } %d], [\', qsort(array, 5, sizeof(s), compare); printf(\'
sorted array: 
\'); printf(\'[[\'); for(i="0;" i < 5; pre> <p> <strong>Output:</strong> </p> <pre> Original array: [[1, 7], [4, 0], [9, 4], [8, 8], [2, 4]] Sorted array: [[1, 7], [2, 4], [4, 0], [8, 8], [9, 4]] </pre> <h3>Understanding:</h3> <p>We declared an array of type Structure, meaning every element in the array is an array of structure elements. In the above program, the structure has two integer elements. The task is to sort the array with respect to the first Structure element, and if any two first elements are equal, we need to sort it using the second element.</p> <p> <strong>Example:</strong> </p> <p>[[1, 2], [3, 4], [1, 4]]</p> <p>Sorted array: [[1, 2], [1, 4], [3, 4]]</p> <p>We used the rand() function to generate random elements in the array. In the compare() function, we need to typecast the two pointers to type structure.</p> <img src="//techcodeview.com/img/c-tutorial/30/qsort-c.webp" alt="qsort() in C"> <p>The specialty of using qsort() is the custom compare function that we can design the way we want. We can also sort a few elements in an array and leave the rest unsorted.</p> <hr></5;></pre></n;>

Entendimento:

  • Temos uma matriz de strings. A diferença entre uma matriz inteira e uma matriz de string é que:
    1. Uma matriz inteira é uma coleção de inteiros
    2. Uma matriz de strings é uma coleção de matrizes de caracteres/ponteiros de caracteres.
  • Portanto, na função de comparação, precisamos converter os ponteiros void para (char**)a e não (char*)a.
    [[sequência 1], [sequência 2]?]
    Quando usamos char*, ele aponta para o array, e então, para apontar para uma string no array, precisamos de um ponteiro duplo.
  • Usamos a função strcmp() aqui. A função é definida no arquivo de cabeçalho string.h. Precisamos incluí-lo primeiro.
  • A função retorna:
    1. 0 se ambas as strings forem iguais
    2. 1 se o valor ASCII de um caractere na string for maior que o caractere correspondente na segunda string
    3. -1 se o valor ASCII de um caractere na string for menor que o caractere correspondente na segunda string.

3. Classificando uma matriz de estrutura

 #include #include struct Structure { int num1; int num2; }s; typedef struct Structure data; int compare(const void* p, const void* q) { data *a = (data *)p; data *b = (data *)q; int first = (a -&gt; num1)- (b -&gt; num1); int second = (a -&gt; num2)- (b -&gt; num2); if(first == 0) { return second; } return first; } int main() { data array[5]; int i = 0; printf(&apos;Original array: 
&apos;); printf(&apos;[[&apos;); for(i = 0; i <5; i++) { array[i].num1="rand()%10;" array[i].num2="rand()%10;" if(i="=" 4) printf(\'%d, %d]]\', array[i].num1, array[i].num2); break; } %d], [\', qsort(array, 5, sizeof(s), compare); printf(\'
sorted array: 
\'); printf(\'[[\'); for(i="0;" i < 5; pre> <p> <strong>Output:</strong> </p> <pre> Original array: [[1, 7], [4, 0], [9, 4], [8, 8], [2, 4]] Sorted array: [[1, 7], [2, 4], [4, 0], [8, 8], [9, 4]] </pre> <h3>Understanding:</h3> <p>We declared an array of type Structure, meaning every element in the array is an array of structure elements. In the above program, the structure has two integer elements. The task is to sort the array with respect to the first Structure element, and if any two first elements are equal, we need to sort it using the second element.</p> <p> <strong>Example:</strong> </p> <p>[[1, 2], [3, 4], [1, 4]]</p> <p>Sorted array: [[1, 2], [1, 4], [3, 4]]</p> <p>We used the rand() function to generate random elements in the array. In the compare() function, we need to typecast the two pointers to type structure.</p> <img src="//techcodeview.com/img/c-tutorial/30/qsort-c.webp" alt="qsort() in C"> <p>The specialty of using qsort() is the custom compare function that we can design the way we want. We can also sort a few elements in an array and leave the rest unsorted.</p> <hr></5;>

Entendimento:

Declaramos um array do tipo Structure, o que significa que cada elemento do array é um array de elementos de estrutura. No programa acima, a estrutura possui dois elementos inteiros. A tarefa é classificar o array em relação ao primeiro elemento da estrutura e, se quaisquer dois primeiros elementos forem iguais, precisamos classificá-lo usando o segundo elemento.

Exemplo:

formato de string java longo

[[1, 2], [3, 4], [1, 4]]

Matriz classificada: [[1, 2], [1, 4], [3, 4]]

Usamos a função Rand() para gerar elementos aleatórios no array. Na função compare(), precisamos converter os dois ponteiros para digitar a estrutura.

qsort() em C

A especialidade de usar qsort() é a função de comparação personalizada que podemos projetar da maneira que quisermos. Também podemos classificar alguns elementos em um array e deixar o restante sem classificação.