-
Notifications
You must be signed in to change notification settings - Fork 1
/
PolinomioCalc.c
361 lines (329 loc) · 10.4 KB
/
PolinomioCalc.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
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
#include <stdbool.h>
#include "LinkedList.h"
#include <ctype.h>
#include <readline/readline.h>
#include <readline/history.h>
#define MAXARGS 100
void normalize(List *lista){
Item *new1 = lista->first;
Item *new2;
int index = 0;
int contsAux, indexLocal;
while (new1 != NULL) {
new2 = new1 -> next;
switch (new1 -> value -> flag) {
//Caso para se for um monomio
case Expre:
contsAux = new1 -> value ->val-> exp ->coeficiente;
indexLocal = index+1;
while (new2 != NULL) {
bool flag = true;
if(new2 -> value -> flag == Expre){ //Verifica se e um monomio
if(new1 -> value -> val->exp->variavel == new2 -> value ->val-> exp -> variavel){ // se aplica se a mesma variavel
if(new1 -> value ->val->exp -> expoente == new2 -> value->val-> exp -> expoente){ //se tem o mesmo expoente
flag = false;
contsAux = new2 -> value ->val->exp -> coeficiente + contsAux;
new2 = new2 -> next;
removeItem(lista,indexLocal);
}
}
}
//Se nao entrou no ultimo if a flag estara a true
if(flag){
flag = true;
new2 = new2 -> next;
++indexLocal;
}
}
//printf("Estou aqui %d \n",contsAux);
new1 -> value ->val-> exp -> coeficiente = contsAux;
//printf("Estou aqui\n");
break;
//Caso para se for uma constante
case Consta:
contsAux = new1 -> value ->val-> constante;
indexLocal = index+1;
while (new2 != NULL) {
if (new2 -> value -> flag==Consta) {
contsAux = new1 -> value -> val->constante + contsAux;
new2 = new2 -> next;
removeItem(lista, indexLocal);
}
else{
new2 = new2 -> next;
++indexLocal;
}
}
new1 -> value -> val->constante = contsAux;
break;
}
//avanco para o proximo no do new1
new1 = new1 -> next;
++index;
}
}
void derivate(List *lista,char target){
Item *newp = lista -> first;
int index = 0;
while (newp != NULL) {
switch (newp -> value -> flag) {
case Expre:
if(newp -> value -> val->exp -> variavel != target)
break;
if(newp -> value -> val->exp -> expoente == 1){
int aux = newp -> value->val-> exp -> coeficiente;
newp = newp -> next;
removeItem(lista,index);
addOn(lista,newConstante(aux),index);
++index;
continue;
}
else{
newp -> value ->val->exp-> coeficiente = newp -> value ->val->exp-> coeficiente * newp -> value ->val->exp-> expoente;
newp -> value ->val->exp-> expoente = newp -> value ->val->exp-> expoente - 1;
}
break;
case Consta:
removeItem(lista,index);
newp = newp -> next;
continue;
break;
}
newp = newp -> next;
++index;
}
}
void soma(List *lista1, List *lista2){
normalize(lista1);
normalize(lista2);
Item *newp1 = lista1 -> first;
while(newp1 != NULL){
Item *newp2 = lista2 -> first;
bool flag = false;
int index= 0;
while (newp2 != NULL) {
switch (newp2 -> value -> flag) {
case Expre:
if(newp1 -> value -> flag==Expre){
if (newp1 -> value ->val->exp -> variavel == newp2 -> value ->val->exp -> variavel){
if(newp1 -> value ->val->exp -> expoente == newp2 -> value ->val->exp -> expoente){
newp1 -> value ->val->exp -> coeficiente = newp1 -> value ->val->exp -> coeficiente + newp2 -> value ->val->exp -> coeficiente;
removeItem(lista2,index);
flag = true;
}
}
}
break;
case Consta:
if(newp1 -> value -> flag==Expre){
flag = true;
newp1 -> value -> val -> constante = newp1 -> value -> val -> constante + newp2 -> value -> val -> constante;
removeItem(lista2,index);
}
break;
}
if (flag){
break;
}
else
++index;
newp2 = newp2 -> next;
}
//printf("Saiu\n");
newp1 = newp1 -> next;
//teste
//free(lista2);
}
newp1 = lista1 -> end;
newp1 -> next = lista2 -> first;
free(lista2);
}
void integrate(List *lista,char target){
int aux;
Item *newp = lista -> first;
int index = 0;
while (newp != NULL) {
switch (newp -> value -> flag) {
case Expre:
if(newp -> value ->val->exp -> variavel != target){
newp -> value -> aux = target;
break;
}
else{
newp -> value ->val->exp-> expoente = newp -> value ->val->exp-> expoente + 1;
newp -> value ->val->exp-> coeficiente = newp -> value ->val->exp-> coeficiente / newp -> value ->val->exp-> expoente;
}
break;
case Consta:
aux = newp -> value-> val -> constante;
newp = newp -> next;
removeItem(lista,index);
addOn(lista,newExpre(aux,target,1),index);
++index;
continue;
break;
}
newp = newp -> next;
++index;
}
}
Monom *parseMonom(char *token){
char *aux1, *aux2, *aux3;
//delimitadores
const char delimiterEstrela[2] = "*";
const char delimiterLevantado[2] = "^";
aux1 = strtok(token,delimiterEstrela);
aux2 = strtok(NULL,delimiterLevantado);
//printf("%s %s\n",aux1,aux2 );
if(aux2 == NULL){
return newConstante(atoi(aux1));
}
else{
aux3 = strtok(NULL,delimiterEstrela); //para meter nojo
//printf("%s\n",aux3);
return newExpre(atoi(aux1),aux2[0],atoi(aux3));
}
}
void printHelp(){
printf("\n");
printf(" -------------------------------Menu Principal------------------------------\n\n");
printf("Síntaxe:\n - Num Polinomio, entre cada monómio utiliza-se o sinal '+'.\n");
printf(" - O monómio escreve-se da sequinte forma:\n [coeficiente]*[parte literal sem grau]^[grau da parte literal].\n");
printf(" - Nenhuma das partes do monómio são opcional, têm de ser todas escritas de forma explicita,\n à expção de quando é uma constante, nesse caso basta escrevê-la diretamente.\n\n");
printf(" --Comando----|--------------Input-----------------------Defeniçao----------\n");
printf(" normaliza -> -------- -> Polinomio -> Normalizar Polinomio\n");
printf(" deriva -> variavel -> Polinomio -> Derivar Polinomio em ordem a uma varivável\n");
printf(" integra -> variavel -> Polinomio -> Integrar Polinomio em ordem a uma varivável\n");
printf(" soma -> Polinomio_1 -> Polinomio_2 -> Soma de dois Polinomios\n");
printf(" help -> -------- -> -------- -> Mostrar este menu\n");
printf(" exit -> -------- -> -------- -> Sair do programa\n");
printf("\n");
printf("Exemplo: normaliza 2*x^2 + 4 + 3*x^2 + 1\n");
printf("O resultado seria: 5*x^2 + 5 \n\n");
printf("-----------------------------------------------------------------------------\n\n");
}
int parse(char *linha){
const char delimiter[2] = " ";
const char delimiter2[2] = "+";
char *token;
char *resto;
List *lista1;
List *lista2;
token = strtok(linha, delimiter);
if(!strcmp(token,"exit")) return 0;
if(!strcmp(token,"help")){ printHelp(); return 1;}
//derivar
if(!strcmp(token,"deriva")){
token = strtok(NULL,delimiter);
char target = token[0];
lista1 = newList();
token = strtok(NULL,delimiter2);
resto = strtok(NULL,delimiter);
while(token != NULL){
//printf("%s %s\n",token,resto );
add(lista1, parseMonom(token));
token = strtok(resto,delimiter2);
resto = strtok(NULL,delimiter);
}
//printList(lista1);
derivate(lista1,target);
putchar('\n');
printList(lista1);
putchar('\n');
free(lista1);
return 1;
}
//integra
if(!strcmp(token,"integra")){
token = strtok(NULL,delimiter);
char target = token[0];
lista1 = newList();
token = strtok(NULL,delimiter2);
resto = strtok(NULL,delimiter);
while(token != NULL){
//printf("%s %s\n",token,resto );
add(lista1, parseMonom(token));
token = strtok(resto,delimiter2);
resto = strtok(NULL,delimiter);
}
//printList(lista1);
integrate(lista1,target);
putchar('\n');
printList(lista1);
putchar('\n');
free(lista1);
return 1;
}
//normaliza
if(!strcmp(token,"normaliza")){
lista1 = newList();
token = strtok(NULL,delimiter2);
resto = strtok(NULL,delimiter);
while(token != NULL){
//printf("%s %s\n",token,resto );
add(lista1, parseMonom(token));
token = strtok(resto,delimiter2);
resto = strtok(NULL,delimiter);
}
//printList(lista1);
normalize(lista1);
putchar('\n');
printList(lista1);
putchar('\n');
free(lista1);
return 1;
}
//soma
if(!strcmp(token,"soma")){
lista1 = newList();
lista2 = newList();
token = strtok(NULL,delimiter);
char *restBigger = strtok(NULL,delimiter);
//lista 1
token = strtok(token,delimiter2);
resto = strtok(NULL,delimiter);
while(token != NULL){
//printf("%s %s\n",token,resto );
add(lista1, parseMonom(token));
token = strtok(resto,delimiter2);
resto = strtok(NULL,delimiter);
}
//lista 2
token = strtok(restBigger,delimiter2);
resto = strtok(NULL,delimiter);
while(token != NULL){
//printf("%s %s\n",token,resto );
add(lista2, parseMonom(token));
token = strtok(resto,delimiter2);
resto = strtok(NULL,delimiter);
}
soma(lista1, lista2);
putchar('\n');
printList(lista1);
putchar('\n');
return 1;
}
printf("Erro: Opção não reconhecida!\n");
printHelp();
return -1;
}
int main(int argc, char const *argv[]) {
printHelp();
while (1) {
char *linha;
if ((linha = readline(" > ")) == NULL){
putchar('\n');
exit(0);
}
if (strlen(linha) != 0) {
add_history(linha);
int status = parse(linha);
if(!status){
putchar('\n');
exit(0);
}
}
free(linha);
}
return 0;
}