-
Notifications
You must be signed in to change notification settings - Fork 0
/
com112_main.c
146 lines (119 loc) · 5.01 KB
/
com112_main.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/*
* File: main.c
* Author: demo
*
* Created on 29 de Março de 2018, 21:15
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include "com112_sort.h"
#include "com112_file.h"
int main() {
LimpaArquivos(); //Remove todos os arquivos de ordenação gerados por outra instância previamente abertas do programa
int TamArq=MenuRelatorio(TamArq);// Menu de Relatorio retorna o tamanho do arquivo;
int n_comp = 0;
int n_troca = 0;
int *Vet;
int sair = 1;
int i;
char indentificador[20];
clock_t t0, tf;
double tempo_gasto;
int op;
do {
n_comp = 0;
n_troca = 0;
printf("\n\n\n\t Trabalho prático Algoritmo e Estrutura de dados II");
printf("\n\n\t Algoritmo Desenvolvidos ");
printf("\n\t Bubble Sort -> 1 ");
printf("\n\t Insertion Sort -> 2 ");
printf("\n\t Selection Sort -> 3 ");
printf("\n\t Merge Sort -> 4 ");
printf("\n\t Quick Sort -> 5 ");
printf("\n\t Gerar Relatorio Final-> 6 ");
printf("\n\t Gerar Relatorio Saida-> 7 ");
printf("\n\t Sair -> 0 ");
do {
printf("\n\n\t Escolha: ");
scanf("%d", &op);
n_comp=0;
n_troca=0;
} while (op != 1 && op != 2 && op != 3 && op != 4 && op != 5 && op != 6 && op != 0 && op != 7);
system("clear");
switch (op) {
case 1:
Vet = (int *) malloc(TamArq * sizeof(int));//Alocando o vetro dinamicamente
printf("\n\t Algoritmo Definido -> * Bubble Sort *\n");
Preenche_Vetor_Tam_N(Vet);
strcpy(indentificador,"1-Bubble_Sort.txt");
bublle_sort(TamArq, Vet, &n_comp, &n_troca, indentificador, &tempo_gasto);
printf("\n\n \t Sucesso ! ");
break;
case 2:
Vet = (int *) malloc(TamArq * sizeof(int));//Alocando o vetro dinamicamente
printf("\n\tAlgoritmo Definido -> * Insertion Sort *");
Preenche_Vetor_Tam_N(Vet);
strcpy(indentificador,"2-Insertion_Sort.txt");
insertionSort(Vet, TamArq, &n_comp, &n_troca, indentificador, &tempo_gasto);
printf("\n\n \t Sucesso ! ");
break;
case 3:
Vet = (int *) malloc(TamArq * sizeof(int));//Alocando o vetro dinamicamente
printf("\n\tAlgoritmo Definido -> * Selection Sort *");
Preenche_Vetor_Tam_N(Vet);
strcpy(indentificador,"3-Selection_Sort.txt");
Selection_Sort(TamArq, Vet, &n_comp, &n_troca, indentificador, &tempo_gasto);
printf("\n\n \t Sucesso ! ");
break;
case 4:
Vet = (int *) malloc(TamArq * sizeof(int));//Alocando o vetro dinamicamente
printf("\n\tAlgoritmo Definido -> * Merge Sort *");
Preenche_Vetor_Tam_N(Vet);
strcpy(indentificador,"4-Merge_Sort.txt");
t0 = clock();
mergesort(Vet, 0, TamArq - 1, &n_comp, &n_troca);
tf = clock();
tempo_gasto = (tf - t0) * 1000.0 / CLOCKS_PER_SEC;
Grava_Arquivo_Ordenado(Vet, TamArq, n_comp, n_troca, indentificador, tempo_gasto);
printf("\n\n \t Sucesso ! ");
break;
case 5:
Vet = (int *) malloc(TamArq * sizeof(int));//Alocando o vetro dinamicamente
printf("\n\tAlgoritmo Definido -> * Quick Sort *");
Preenche_Vetor_Tam_N(Vet);
strcpy(indentificador,"5-Quick_Sort.txt");
t0 = clock();
quicksort(Vet, 0, TamArq - 1, &n_comp, &n_troca);
tf = clock();
tempo_gasto = (tf - t0) * 1000.0 / CLOCKS_PER_SEC;
Grava_Arquivo_Ordenado(Vet, TamArq, n_comp, n_troca, indentificador, tempo_gasto);
printf("\n\n \t Sucesso ! ");
break;
case 6:
if (Vet != NULL){
Relatorio_Final(TamArq);// Gerando o Relatorio Final
printf("\n\n \t Sucesso ! ");
} else {
printf("Execute ao menos uma ordenacao! \n");
}
break;
case 7:
if (Vet != NULL){
Gerar_Saida(Vet, TamArq); // Gerando o relatorio de saida
printf("\n\n \t Sucesso ! ");
}
else
printf("Primeiro execute uma ordenacao! \n");
break;
}
} while (op != 0);
free(Vet);
return (EXIT_SUCCESS);
}