summaryrefslogtreecommitdiff
path: root/lib/polynom.c
blob: 931f292466427ef6525742f6698271ed68444924 (plain)
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
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
/*
 *
 * Operations sur les polynomes
 *
 */
#include <stdio.h>
#include <math.h>
#include <stdlib.h>
#include <string.h>
#include "polynom.h"
#include "scalaires.h"
#include "exceptions.h"
#include "main.h"
#ifdef HAVE_CONFIG_H
#include "config.h"
#else
#define _(x) x
#endif

int smartprint = 1;

/*
 * Les fonctions de base pour la construction et la destruction de polynomes 
 */
polynome ply_constr(rationnel coef, int degre)
{				/*
				 * constructeur monome 
				 */
    polynome temp;

    if (!coef.num)
	return NULL;

    temp = (monome *) Emalloc(sizeof(monome));

    temp->coef = coef;
    temp->degre = degre;
    temp->suiv = NULL;

    return temp;
}

polynome ply_vide(void)
{				/*
				 * cree un polynome 
				 */

    return NULL;
}

void ply_destruct(polynome poly)
{				/*
				 * destructeur 
				 */
    if (poly) {
	ply_destruct(poly->suiv);
	free(poly);
    }
}

polynome ply_copy(polynome poly)
{				/*
				 * recopie 
				 */
    polynome result = NULL, temp = NULL, t;

    while (poly) {
	t = ply_constr(poly->coef, poly->degre);
	if (result) {
	    temp->suiv = t;
	    temp = t;
	} else {
	    result = t;
	    temp = t;
	}
	poly = poly->suiv;
    }
    return result;
}

/*
 * Voici toutes les fonctions de manipulation de polynome. La fonction d'addition est la plus
 * importante puisqu'elle nous sert a construire un polynome entier a partir de monomes. Sa
 * structure est comparable a celle de l'operation 'fusion' dans le cas du tri fusion 
 */

polynome ply_addition(polynome poly1, polynome poly2)
{				/*
				 * addition de deux polynomes 
				 */
    polynome resultat = NULL, temp = NULL, t;
    rationnel newrat;
    int degre;

    while (poly1 && poly2) {
	if (poly1->degre > poly2->degre) {
	    t = ply_constr(poly1->coef, poly1->degre);
	    poly1 = poly1->suiv;
	} else if (poly1->degre < poly2->degre) {
	    t = ply_constr(poly2->coef, poly2->degre);
	    poly2 = poly2->suiv;
	} else {
	    newrat = rat_addition(poly1->coef, poly2->coef);
	    degre = poly1->degre;
	    t = ply_constr(newrat, degre);
	    poly1 = poly1->suiv;
	    poly2 = poly2->suiv;
	}
	if (t) {
	    if (resultat) {
		temp->suiv = t;
		temp = t;
	    } else {
		resultat = t;
		temp = t;
	    }
	}
    }

    while (poly1) {
	t = ply_constr(poly1->coef, poly1->degre);
	if (resultat) {
	    temp->suiv = t;
	    temp = t;
	} else {
	    resultat = t;
	    temp = t;
	}
	poly1 = poly1->suiv;
    }

    while (poly2) {
	t = ply_constr(poly2->coef, poly2->degre);
	if (resultat) {
	    temp->suiv = t;
	    temp = t;
	} else {
	    resultat = t;
	    temp = t;
	}
	poly2 = poly2->suiv;
    }

    return resultat;
}

/*
 * Nous avons choisi de reecrire cette fonction entierement, plutot que de bricoler a partir de la
 * fonction addition 
 */
polynome ply_soustraction(polynome poly1, polynome poly2)
{				/*
				 * soustraction de deux polynomes 
				 */

    polynome resultat = NULL, temp = NULL, t;
    rationnel newrat;
    int degre;

    while (poly1 && poly2) {
	if (poly1->degre > poly2->degre) {
	    t = ply_constr(poly1->coef, poly1->degre);
	    poly1 = poly1->suiv;
	} else if (poly1->degre < poly2->degre) {
	    t = ply_constr(rat_moinsunaire(poly2->coef), poly2->degre);
	    poly2 = poly2->suiv;
	} else {
	    newrat = rat_soustraction(poly1->coef, poly2->coef);
	    degre = poly1->degre;
	    t = ply_constr(newrat, degre);
	    poly1 = poly1->suiv;
	    poly2 = poly2->suiv;
	}
	if (t) {
	    if (resultat) {
		temp->suiv = t;
		temp = t;
	    } else {
		resultat = t;
		temp = t;
	    }
	}
    }

    while (poly1) {
	t = ply_constr(poly1->coef, poly1->degre);
	if (resultat) {
	    temp->suiv = t;
	    temp = t;
	} else {
	    resultat = t;
	    temp = t;
	}
	poly1 = poly1->suiv;
    }

    while (poly2) {
	t = ply_constr(rat_moinsunaire(poly2->coef), poly2->degre);
	if (resultat) {
	    temp->suiv = t;
	    temp = t;
	} else {
	    resultat = t;
	    temp = t;
	}
	poly2 = poly2->suiv;
    }

    return resultat;
}

/*
 * La fonction multiplication se base sur la fonction addition, suivant les mathematiques
 * classiques 
 */
polynome ply_multiplication(polynome poly1, polynome poly2)
{				/*
				 * multiplication de deux  polynomes 
				 */
    polynome temp = NULL, t, resultat = NULL, r, tempresult = NULL, poly2init;

    poly2init = poly2;
    while (poly1) {
	poly2 = poly2init;
	while (poly2) {
	    t =
		ply_constr(rat_multiplication(poly1->coef, poly2->coef),
			   poly1->degre + poly2->degre);
	    if (t) {
		if (tempresult) {
		    temp->suiv = t;
		    temp = t;
		} else {
		    tempresult = t;
		    temp = t;
		}
	    }
	    poly2 = poly2->suiv;
	}
	poly1 = poly1->suiv;
	r = ply_addition(tempresult, resultat);
	ply_destruct(resultat);
	resultat = r;
	ply_destruct(tempresult);
	tempresult = NULL;
    }

    return resultat;
}

/*
 * L'algorithme pour la division et le modulo est le meme. Seul le return change. En effet, pour
 * faire le calcul, nous utilisons la methode simple vue en cours de mathematiques, qui consiste a
 * poser la division sur une feuille et a effectuer une serie de multiplications elementaires et de 
 * soustractions. Nous obtenons donc le quotient ET le reste. 
 */

polynome ply_division(polynome dividende, polynome diviseur)
{				/*
				 * division de deux  polynomes 
				 */
    polynome interdividende = ply_copy(dividende), interdiviseur = NULL, inter = NULL, reste =
	dividende, resultat = NULL, r = NULL;
    int b = 0;

#ifdef DEBUG
    printf("On divise %s", ply_affichage(dividende));
    printf("par %s\n", ply_affichage(diviseur));
    printf("interdividende degre = %u\n", interdividende->degre);
    printf("diviseur degre = %u\n", diviseur->degre);
#endif
    while ((interdividende) && (interdividende->degre >= diviseur->degre)) {
	b = 1;
	inter =
	    ply_constr(rat_division(interdividende->coef, diviseur->coef),
		       interdividende->degre - diviseur->degre);
#ifdef DEBUG
	printf("On trouve qu'il nous faut soustraire %s fois\n", ply_affichage(inter));
#endif
	r = ply_addition(resultat, inter);
#ifdef DEBUG
	printf("Resultat intermediaire %s\n", ply_affichage(r));
#endif
	interdiviseur = ply_multiplication(diviseur, inter);
#ifdef DEBUG
	printf("On soustrait donc %s\n", ply_affichage(interdiviseur));
#endif
	reste = ply_soustraction(interdividende, interdiviseur);
#ifdef DEBUG
	printf("Reste intermediaire %s\n", ply_affichage(reste));
#endif
	ply_destruct(resultat);
	ply_destruct(inter);
	ply_destruct(interdividende);
	ply_destruct(interdiviseur);
	resultat = r;
	interdividende = reste;
    }

    if (!b)
	ply_destruct(interdividende);

    return resultat;
}

polynome ply_modulo(polynome dividende, polynome diviseur)
{				/*
				 * reste de la division de deux  polynomes 
				 */
    polynome interdividende = ply_copy(dividende), interdiviseur = NULL, inter = NULL, reste =
	dividende, resultat = NULL, r = NULL;
    int b = 0;

#ifdef DEBUG
    printf("On divise %s", ply_affichage(dividende));
    printf("par %s\n", ply_affichage(diviseur));
    printf("interdividende degre = %u\n", interdividende->degre);
    printf("diviseur degre = %u\n", diviseur->degre);
#endif
    while ((interdividende) && (interdividende->degre >= diviseur->degre)) {
	b = 1;
	inter =
	    ply_constr(rat_division(interdividende->coef, diviseur->coef),
		       interdividende->degre - diviseur->degre);
#ifdef DEBUG
	printf("On trouve qu'il nous faut soustraire %s fois\n", ply_affichage(inter));
#endif
	r = ply_addition(resultat, inter);
#ifdef DEBUG
	printf("Resultat intermediaire %s\n", ply_affichage(r));
#endif
	interdiviseur = ply_multiplication(diviseur, inter);
#ifdef DEBUG
	printf("On soustrait donc %s\n", ply_affichage(interdiviseur));
#endif
	reste = ply_soustraction(interdividende, interdiviseur);
#ifdef DEBUG
	printf("Reste intermediaire %s\n", ply_affichage(reste));
#endif
	ply_destruct(resultat);
	ply_destruct(inter);
	ply_destruct(interdividende);
	ply_destruct(interdiviseur);
	resultat = r;
	interdividende = reste;
    }

    if (!b)
	ply_destruct(interdividende);

    return b ? reste : ply_copy(reste);
}

polynome ply_exposant(polynome poly, unsigned int exp)
{				/*
				 * exponentiation d'un polynome 
				 */
    int i;
    polynome result, temp;

    if (poly) {
	result = ply_constr(rat_constr(1, 1), 0);
	for (i = 0; i < exp; i++) {
	    temp = ply_multiplication(result, poly);
	    ply_destruct(result);
	    result = temp;
	}
    } else {
	result = NULL;
    }
    return result;

}

rationnel ply_valuation(polynome poly, rationnel point)
{				/*
				 * evaluation d'un polynome en un point 
				 */
    rationnel result = rat_constr_zero();

    while (poly) {
	result = rat_addition(result, rat_multiplication(poly->coef, rat_pow(point, poly->degre)));
	poly = poly->suiv;
    }
    return result;
}

char *ply_affichage(polynome poly)
{				/*
				 * routine d'affichage d'un polynome 
				 */
    static char buf[BUFSIZ];
    char temp[BUFSIZ];
    char *rat;
    int count = 0;
    int first = 1;

    buf[0] = '\0';
    if (!poly) {
	sprintf(buf, "%s ", rat_to_string(rat_constr(0, 1), 1));
    } else {
	while (poly) {
	    if (poly->degre != 0) {
		if (smartprint) {
		    rat =
			(rat_to_double(poly->coef) ==
			 1) ? (first ? "" : "+ ") : rat_to_double(poly->coef) ==
			-1 ? (first ? "-" : "- ") : rat_to_string(poly->coef, first);
		    switch (poly->degre) {
		    case 1:
			sprintf(temp, "%s%s ", rat, mute);
			break;
		    case 2:
			sprintf(temp, "%s%s%c ", rat, mute, 178);
			break;
		    case 3:
			sprintf(temp, "%s%s%c ", rat, mute, 179);
			break;
		    default:
			sprintf(temp, "%s%s^%u ", rat, mute, poly->degre);
			break;
		    }
		} else {
		    sprintf(temp, "%s*%s^%u ", rat_to_string(poly->coef, first), mute, poly->degre);
		}
	    } else {
		sprintf(temp, "%s ", rat_to_string(poly->coef, first));
	    }
	    count += strlen(temp);
	    if (count < BUFSIZ)
		strcat(buf, temp);
	    else
		exception(2, _("ply_affichage: strcat error, not enough space in buffer"));
	    poly = poly->suiv;
	    first = 0;
	}
    }
    return buf;
}