-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshell-sort.c
executable file
·64 lines (46 loc) · 1.15 KB
/
shell-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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#include <stdio.h>
#include <stdlib.h>
typedef int elem;
//analisar a complexicidade
void insertion(elem *lista, int tam, long h){
for(long i = h; i < tam; i++){
elem aux = lista[i];
long j = i - h;
while(j >= 0 && aux < lista[j]){
lista[j + h] = lista[j];
j -= h;
}
lista[j + h] = aux;
}
}
void shell_sort(elem *lista, long tam){
long mem = 10;//total de memoria a ser alocada
long *lista_passos = malloc(mem*sizeof(long));//o professor adenilso dizia que era bom aloccar memoria em passos maiores para não precisar fazer muitos
lista_passos[0] = 1;
long i = 1;
while(lista_passos[i - 1] < tam){
if(i > mem){
mem += 10;
lista_passos = (long*)realloc(lista_passos, mem);
if(lista_passos == NULL)
printf("Erro na criação do vetor de passos\n");
exit(1);
}
lista_passos[i] = 3*lista_passos[i - 1] + 1;
i++;
}
i--;
for(; i >= 0; i--){
insertion(lista, tam, lista_passos[i]);
}
free(lista_passos);
}
int main(){
elem lista[] = {25, 57, 35, 37, 12, 86, 92, 33, 35, 58, 34, 80, 45, 22, 14, 34};
shell_sort(lista, 16);
for(int i = 0; i < 16; i++){
printf("%d ", lista[i]);
}
printf("\n");
return 0;
}