-
Notifications
You must be signed in to change notification settings - Fork 0
/
questao_22.c
77 lines (48 loc) · 1.39 KB
/
questao_22.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
65
66
67
68
69
70
71
72
73
74
75
76
77
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include "questao_22_printVetor.h"
#include "questao_22_bubbleSort.h"
#include "questao_22_insertSort.h"
#include "questao_22_selectionSort.h"
#include "questao_22_mergeSort.h"
#include "questao_22_quickSort.h"
#include "questao_22_heapSort.h"
#include "questao_22_countingSort.h"
#include "questao_22_bucketSort.h"
#define TAM 6
int main(){
clock_t tempo, t0, t1; //Armazenadores de tempo do procesador
tempo = clock(); //Tempo de execucao do programa
int vetor[TAM], i;
printf("\n\n\tVETOR NAO ORDENADO\n");
for(i = 0; i < TAM; i++){
vetor[i] = rand()%TAM;
}
printVetor(vetor, TAM);
printf("\n\n\tVETOR BUBBLE SORT\n");
bubbleSort(vetor, TAM);
printVetor(vetor, TAM);
printf("\n\n\tVETOR INSERT SORT\n");
insertSort(vetor, TAM);
printVetor(vetor, TAM);
printf("\n\n\tVETOR SELECTION SORT\n");
selectionSort(vetor, TAM);
printVetor(vetor, TAM);
printf("\n\n\tVETOR MERGE SORT\n");
mergeSort(vetor, 0, TAM);
printVetor(vetor, TAM);
printf("\n\n\tVETOR QUICK SORT\n");
quickSort(vetor, 0, TAM);
printVetor(vetor, TAM);
printf("\n\n\tVETOR HEAP SORT\n");
heapSort(vetor, TAM);
printVetor(vetor, TAM);
printf("\n\n\tVETOR COUNTING SORT\n");
countingSort(vetor, TAM);
printVetor(vetor, TAM);
printf("\n\n\tVETOR BUCKET SORT\n");
bucketSort(vetor, TAM);
printVetor(vetor, TAM);
return 0;
}