-
Notifications
You must be signed in to change notification settings - Fork 1
/
geradorLista.c
136 lines (131 loc) · 3.76 KB
/
geradorLista.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
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <unistd.h>
#include <string.h>
#include <locale.h>
#ifdef linux
#define LIMPA system("clear")
#else
#define LIMPA system("cls")
#endif
void mostraAjuda(char **argv);
void geraMelhor(int quantidade, int *lista);
void geraAleatorio(int qunatidade, int *lista);
void geraPior(int quantidade, int *lista);
int main(int argc, char **argv){
setlocale(LC_ALL, "ptb");
LIMPA;
srand(time(NULL));
int i, quantidade, opcao, tipoLista, *lista = NULL, retorno;
char *nomeLista = NULL, tipoListaS[10];
while((opcao = getopt(argc, argv, "hl:t:q:")) > 0){
switch(opcao){
case 't':
if(strncmp(optarg, "aleatorio", 9) == 0){
tipoLista = 0;
strncpy(tipoListaS, "aleatorio", 9);
break;
}
if(strncmp(optarg, "melhor", 6) == 0){
tipoLista = 1;
strncpy(tipoListaS, "melhor", 6);
break;
}
if(strncmp(optarg, "pior", 4) == 0){
tipoLista = 2;
strncpy(tipoListaS, "pior", 4);
break;
}
printf("[%s] - Argumento inválido!\n", optarg);
exit(1);
break;
case 'l':
nomeLista = optarg;
break;
case 'q':
quantidade = atoi(optarg);
break;
case 'h':
mostraAjuda(argv);
break;
default:
printf("Opção invalida!\n");
return 1;
break;
}
}
lista = calloc(quantidade, sizeof(int));
switch(tipoLista){
case 0:
geraAleatorio(quantidade, lista);
break;
case 1:
geraMelhor(quantidade, lista);
break;
case 2:
geraPior(quantidade, lista);
break;
}
FILE *arquivo = NULL;
arquivo = fopen(nomeLista, "w");
if(arquivo == NULL){
printf("Erro ao salvar a lista!\n");
exit(1);
}
for(i = 0;i < quantidade;i++){
fprintf(arquivo, "%d\n", lista[i]);
}
free(lista);
printf("Nome da lista gerada:\t%s\n", nomeLista);
printf("Quantidade:\t\t%d\n", quantidade);
printf("Tipo de lista:\t\t%s\n", tipoListaS);
printf("Para mais informções utilize a opção -h\n");
if(retorno != EOF){
fclose(arquivo);
}
else{
printf("Erro ao salvar a lista!\n");
fclose(arquivo);
exit(1);
}
return 0;
}
void mostraAjuda(char **argv){
printf("Modos de uso:\n");
printf("\t-h\t\t\t\tMostra essa tela.\n");
printf("\t-t aleatorio|melhor|pior\tTipo da lista a ser gerada.\n");
printf("\t-l nomeLista.txt\t\tDefinir o nome do aquivo da lista a ser gerada.\n");
printf("\t-q QUANTIDADE\t\t\tDefinir a quantidade de numeros gerados.\n");
printf("exemplo de uso:\n");
printf("talyson@XPS:~$ %s -t aleatorio -q 10000 -l lista_10k.txt\n", argv[0]);
printf("\n\nVersão 0.1 - Gerador de lista para materia de Pesquisa e Odernação de Dados UTFPR-MD.\n");
printf("Devevolvido por Talyson Rodrigues 13/02/2016.\nContato:t4lyson[at]gmail[dot]com.\n");
printf("Compilação: %s, %s.\n", __DATE__, __TIME__);
exit(1);
}
void geraAleatorio(int quantidade, int *lista){
int i, aux, pos1, pos2;
for(i = 0;i < quantidade;i++){
lista[i] = i;
}
for(i = 0;i <= quantidade;i++){
pos1 = rand() % quantidade;
pos2 = rand() % quantidade;
aux = lista[pos1];
lista[pos1] = lista[pos2];
lista[pos2] = aux;
}
}
void geraMelhor(int quantidade, int *lista){
int i;
for(i = 0;i < quantidade;i++){
lista[i] = i;
}
}
void geraPior(int quantidade, int *lista){
int i;
for(i = quantidade -1 ;i >= 0;i--){
lista[i] = quantidade - 1 - i;
}
}