-
Notifications
You must be signed in to change notification settings - Fork 0
/
quick_sort.c
49 lines (46 loc) · 1.16 KB
/
quick_sort.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#include <stdio.h>
#include <stdlib.h>
void Quicksort(int vetor[], int inicio, int fim){
int pivo, aux, i, j, meio;
i = inicio; //esquerda
j = fim; //direita
meio = (int) ((i + j) / 2);
pivo = vetor[meio];
do
{
while (vetor[i] > pivo)
i = i + 1;
while (vetor[j] < pivo)
j = j - 1;
if(i <= j)
{
aux = vetor[i];
vetor[i] = vetor[j];
vetor[j] = aux;
i = i + 1;
j = j - 1;
}
} while(j > i);
if(inicio < j)
Quicksort(vetor, inicio, j);
if(i < fim)
Quicksort(vetor, i, fim);
}
int main ()
{
int tam = 10; //tamanho da input, "n".
int vetor[tam];
for (int m = 0; m < 1; m++) //realiza as 10 iterações necessárias
{
srand(time(NULL)); //reseta a sequencia aleatoria
for (int i = 0; i < tam; i++) //atribui valores aleatorios
{
vetor[i] = rand() % tam; //ao vetor de entrada
printf("%d ", vetor[i]);
}
Quicksort(vetor, 0, tam);
for (int i=0;i<tam; i++)
printf("%d ", vetor[i]);
return 0;
}
}