-
Notifications
You must be signed in to change notification settings - Fork 0
/
com112_file.c
336 lines (246 loc) · 8.07 KB
/
com112_file.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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
/*
* 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: com112_file.c
* Author: demo
*
* Created on 7 de Abril de 2018, 13:43
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
//#include <zconf.h>
#include "com112_file.h"
void GeraArquivo_N_Numeros(int tam) {
FILE *f; //Ponteiro para ler o arquivo
//Abre o arquivo e testa se houve falha, em caso de falha, exibe uma mensagem
if (!(f = fopen("com112_entrada.txt", "w"))) {
printf("Erro ao abrir o arquivo!\n");
exit(1);
}
// Gravando o tamnhado do vetor na primeira linha do arquivo
fprintf(f, "%d \n", tam);
// Escrevendo numeros aleatorio no arquivo
while (0 < tam) {
fprintf(f, "%d ", rand() % 10000);
tam--;
}
// fechando o arquiv0
fclose(f);
}
void GeraArquivo_N_Numeros_Ordenado(int tam) {
FILE *f; //Ponteiro para ler o arquivo
int cont = 0;
//Abre o arquivo e testa se houve falha, em caso de falha, exibe uma mensagem
if (!(f = fopen("com112_entrada.txt", "w"))) {
printf("Erro ao abrir o arquivo!\n");
exit(1);
}
// Gravando o tamnhado do vetor na primeira linha do arquivo
fprintf(f, "%d \n", tam);
// Escrevendo numeros aleatorio no arquivo
while (cont < tam) {
fprintf(f, "%d ", cont);
cont++;
}
// fechando o arquiv0
fclose(f);
}
int MenuRelatorio(int TamArq) {
int op = 0;
int *Vet;
do {
printf("\n\n\n\t Trabalho prático Algoritmo e Estrutura de dados II");
printf("\n\n\t Relatorios ! ");
printf("\n\t Gerar Relatorio Aleatorio e usar -> 1 ");
printf("\n\t Gerar Relatorio Ordenado e usar -> 2 ");
printf("\n\n\t Escolha: ");
scanf("%d", &op);
} while (op != 1 && op != 2);
switch (op) {
case 1:
printf("\n\t Gerar Relatorio Aleatorio ");
printf("\n\n\t Digite o tamanho do arquivo: ");
scanf("%d", &TamArq);
// Alocando o vetor dinamicamente
Vet = (int *) malloc(TamArq * sizeof (int));
// Funcão gera arquivo
GeraArquivo_N_Numeros(TamArq);
printf("\n\t** Relatorio Aleatorio Gerado com Sucesso ** ");
system("clear");
return TamArq;
break;
case 2:
printf("\n\t Gerar Relatorio Aleatorio ");
printf("\n\n\t Digite o tamanho do arquivo: ");
scanf("%d", &TamArq);
// Alocando o vetor dinamicamente
Vet = (int *) malloc(TamArq * sizeof (int));
// Funcão gera arquivo
GeraArquivo_N_Numeros_Ordenado(TamArq);
printf("\n\t** Relatorio Aleatorio Gerado com Sucesso ** ");
system("clear");
return TamArq;
break;
}
return TamArq;
}
void Preenche_Vetor_Tam_N(int *Vet) {
FILE *f;
int tam;
int num;
int cont = 0;
//Abre o arquivo e testa se houve falha, em caso de falha, exibe uma mensagem
if (!(f = fopen("com112_entrada.txt", "r"))) {
printf("Erro ao abrir o arquivo!\n");
exit(1);
}
// Lendo o tamanho do arquivo
fscanf(f, "%d \n", &tam);
////Enquanto não chegar o fim do arquivo, irá ler cada valor e criará um
while (!feof(f)) {
fscanf(f, "%d ", &num);
Vet[cont] = num;
cont++;
}
fclose(f);
}
void Grava_Arquivo_Ordenado(int *Vet, int tam, int n_comp, int n_troca, char *indentificador, double tempo_gasto) {
FILE *arq1, *arq2, *arq3, *arq4, *arq5;
// Abrindo o arquivo para escrevita e validando
if (!(arq1 = fopen(indentificador, "w"))) {
printf("Erro ao abrir o arquivo!\n");
exit(1);
}
// Escrevendo no arquivo a compara, troca e tempo gasto
fprintf(arq1, "%i %i %f \n", n_comp, n_troca, tempo_gasto);
// Estruduta de repetição por escrever todos numeros do vetor no arquivo
for (int i = 0; i < tam; i++)
fprintf(arq1, "%d ", Vet[i]);
fclose(arq1);
}
void Relatorio_Final(int Tam) {
int n_comp;
int n_mov;
int flag = 0;
float n_temp;
FILE *f; //Ponteiro para ler o arquivo
FILE *arq1, *arq2, *arq3, *arq4, *arq5;
//Abre o arquivo e testa se houve falha, em caso de falha, exibe uma mensagem
if (!(f = fopen("com112_relatorio.txt", "w"))) {
printf("Erro ao abrir o arquivo!\n");
exit(1);
}
fprintf(f, "Numeros de elementos ordenados: %d \n\n", Tam);
if ((arq1 = fopen("1-Bubble_Sort.txt", "r"))) {
fscanf(arq1, "%d %d %f", &n_comp, &n_mov, &n_temp);
flag = 1;
fprintf(f, "\n Método Bubble Sort \n\t"
" Tempo de execução: %0.2f \n\t"
" Número de comparações: %d \n\t"
" Número de movimentações: %d \n", n_temp, n_comp, n_mov);
}
if (flag)
fclose(arq1);
flag = 0;
if ((arq2 = fopen("2-Insertion_Sort.txt", "r"))) {
fscanf(arq2, "%d %d %f", &n_comp, &n_mov, &n_temp);
flag = 1;
fprintf(f, "\n Método Insertion Sort \n\t "
"Tempo de execução: %0.2f \n\t"
" Número de comparações: %d \n\t"
" Número de movimentações: %d \n", n_temp, n_comp, n_mov);
}
if (flag)
fclose(arq2);
flag = 0;
if ((arq3 = fopen("3-Selection_Sort.txt", "r"))) {
fscanf(arq3, "%d %d %f", &n_comp, &n_mov, &n_temp);
flag = 1;
fprintf(f, "\n Método Selection Sort \n\t"
" Tempo de execução: %0.2f \n\t"
" Número de comparações: %d \n\t"
" Número de movimentações: %d \n", n_temp, n_comp, n_mov);
}
if (flag)
fclose(arq3);
flag = 0;
if ((arq4 = fopen("4-Merge_Sort.txt", "r"))) {
fscanf(arq4, "%d %d %f", &n_comp, &n_mov, &n_temp);
flag = 1;
fprintf(f, "\n Método Merge Sort \n\t"
" Tempo de execução: %0.2f \n\t"
" Número de comparações: %d \n\t"
" Número de movimentações: %d \n", n_temp, n_comp, n_mov);
}
if (flag)
fclose(arq4);
flag = 0;
if ((arq5 = fopen("5-Quick_Sort.txt", "r"))) {
fscanf(arq5, "%d %d %f", &n_comp, &n_mov, &n_temp);
flag = 1;
fprintf(f, "\n Método Quick Sort \n\t"
" Tempo de execução: %0.2f \n\t"
" Número de comparações: %d \n\t"
" Número de movimentações: %d \n", n_temp, n_comp, n_mov);
}
if (flag)
fclose(arq5);
fclose(f);
printf("\n\tRelatorio Final Gerado com Sucesso !");
}
void LimpaArquivos() {
int flag = 0;
FILE *f; //Ponteiro para ler o arquivo
FILE *arq1, *arq2, *arq3, *arq4, *arq5;
if ((arq1 = fopen("1-Bubble_Sort.txt", "r"))) {
unlink("1-Bubble_Sort.txt");
}
if (flag)
fclose(arq1);
flag = 0;
if ((arq2 = fopen("2-Insertion_Sort.txt", "r"))) {
unlink("2-Insertion_Sort.txt");
}
if (flag)
fclose(arq2);
flag = 0;
if ((arq3 = fopen("3-Selection_Sort.txt", "r"))) {
unlink("3-Selection_Sort.txt");
}
if (flag)
fclose(arq3);
flag = 0;
if ((arq4 = fopen("4-Merge_Sort.txt", "r"))) {
unlink("4-Merge_Sort.txt");
}
if (flag)
fclose(arq4);
flag = 0;
if ((arq5 = fopen("5-Quick_Sort.txt", "r"))) {
unlink("5-Quick_Sort.txt");
}
if (flag)
fclose(arq5);
}
void Gerar_Saida(int *Vet, int tam) {
FILE *Relatorio_Saida;
int num;
int a;
int b;
float c;
// Abrindo arquivo para escrever Relatorio de saida
if (!(Relatorio_Saida = fopen("com112_saida.txt", "w"))) {
printf("Erro ao abrir o arquivo!\n");
exit(1);
}
for (int i = 0; i < tam; i++) {
fprintf(Relatorio_Saida, "%d ", Vet[i]);
}
fclose(Relatorio_Saida);
printf("\n\tRelatorio de Saida Gerado com Sucesso !");
return;
}