-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.c
174 lines (158 loc) · 4.27 KB
/
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
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
/*@
@autors: João Pedro Rafael, Alan Gabriel, Miguel Silva
@motivation: Trabalho prático 1 de Algoritmos e estruturas de dados
*/
#define _GNU_SOURCE
#ifdef WIN32
#include <conio.h>
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "./tads/processo/processo.h"
#include "./tads/processo/processo.c"
#include "./tads/lista_processos/lista_processo.h"
#include "./tads/lista_processos/lista_processo.c"
#define INSERE 0
#define REMOVE 1
#define file_string_length 30
#ifdef WIN32
#define _get getch
#else
#define _get getchar
#endif
int main()
{
FILE *file, *outputfile;
char filename[20], op, outputfilename[50];
Lista *lista_processos;
char *string;
clock_t t;
srand(time(NULL));
int nteste;
do
{
cls();
// menu de opções
menu();
puts("\nDigite a opcao desejada: ");
#ifdef WIN32
op = getch();
#else
op = getchar();
#endif
switch (op)
{
case '0':
exit(0);
break;
case '1':
puts("Digite o nome do arquivo: ");
printf(">> ");
scanf("%s", &filename);
if (filename == NULL)
{
puts("Erro ao ler o arquivo\n pressione enter para continuar");
_get();
break;
}
file = fopen(filename, "r");
if (file == NULL)
{
puts("Erro ao ler o arquivo\t (pressione enter para continuar)\n");
_get();
break;
}
printf("Arquivo lido com sucesso\t (pressione enter para continuar)\n");
_get();
// inicio da leitura do arquivo
outputfile = fopen("output.txt", "a");
if (outputfile == NULL || outputfilename == '\0')
{
puts("Erro ao abrir o arquivo\t (pressione enter para continuar)");
_get();
continue;
}
fprintf(outputfile, "\n%s:\n", filename);
// armazena tempo
t = clock();
// reinicia o numero de testes
nteste = 0;
int tipo_da_operacao, num_testes;
unsigned long quantidade;
size_t len = sizeof(char) * file_string_length;
char *linha = malloc(len);
unsigned long tamanho_do_vetor;
int nlinha = 0;
while (getline(&linha, &len, file) > 0)
{
if (nlinha == 0)
{ // primeira linha7
sscanf(linha, "%ld", &tamanho_do_vetor);
printf("tamanho do vetor: %ld\n", tamanho_do_vetor);
free(lista_processos);
lista_processos = inicializa_lista(lista_processos, tamanho_do_vetor);
}
else if (nlinha == 1)
{ // segunda linha
sscanf(linha, "%d", &num_testes);
printf("numero de operacoes: %d\n", num_testes);
}
if (nlinha > 1)
{
// inicia o tempo
clock_t start_time = clock();
nteste++;
unsigned long prog = 0;
unsigned long progresso = 0;
sscanf(linha, "%d %lu", &tipo_da_operacao, &quantidade);
for (unsigned long i = 0; i < quantidade; i++)
{
progresso++;
if (tipo_da_operacao == INSERE)
{
Processo *p;
Celula *celula;
p = inicializa_processo(p);
celula = inicializa_celula(celula, p);
adiciona_celula(lista_processos, celula);
}
else if (tipo_da_operacao == REMOVE)
{
remove_teste(lista_processos);
}
if (progresso % (tamanho_do_vetor / 100) == 0)
{
progresso = 0;
prog++;
printf("\r");
for (int j = 0; j < prog; j++)
{
printf("\xB2");
}
printf(" %d%%", prog);
}
}
// finaliza o tempo
clock_t end_time = clock();
double time = (double)(end_time - start_time) / CLOCKS_PER_SEC;
fprintf(outputfile, "\n\tteste %d :%3f s\n", nteste, time);
}
nlinha++;
}
printf("\n");
if (linha)
free(linha);
fclose(file);
t = clock() - t;
printf("\n\nTempo total de execucao: %3f\n (pressione enter para continuar)", ((float)t) / CLOCKS_PER_SEC);
fclose(outputfile);
_get();
break;
default:
puts("Opcao invalida ( digite qualquer tecla )\n");
_get();
break;
}
} while (op != 'q');
}