Karatsuba.c
5.71 KB
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
#include <stdlib.h>
#include <stdio.h>
#include <stdbool.h>
#include <math.h>
#include <assert.h>
/*
* Représentation élémentaire d'un polynôme.
* On pourrait, au minimum, rajouter le degré !
*/
struct poly
{ double* T; /* le tableau des coefficients */
bool dynamic; /* indique si T a été alloué dynamiquement */
int n; /* la taille du tableau */
};
/*
* Constructeur. Le tableau T est alloué dynamiquement
*/
void init_poly (struct poly* A, int n)
{
A->T = (double*)malloc (n * sizeof (double));
assert (A->T != (double*)0);
A->n = n;
A->dynamic = true;
}
/*
* Autre constructeur. Le tableau T est passé en paramètre.
* Il n'est donc pas alloué dynamiquement
*/
void init2_poly (struct poly* A, double* T, int n)
{
A->T = T;
A->n = n;
A->dynamic = false;
}
/*
* Destructeur.
*/
void clear_poly (struct poly* A)
{
if (A->dynamic)
free (A->T);
}
/*
* L'impression d'un polynôme est plus technique qu'on ne le croit :-)
* On suppose que les doubles sont en fait des entiers
*/
void print_poly (struct poly* A)
{ long c;
int i;
bool b;
b = false;
for (i = A->n - 1; i >= 0; i--)
{ if (A->T[i] != 0.0)
{ if (A->T[i] > 0)
{ if (b) printf (" + ");
} else
{ if (b) printf (" - "); else printf ("-");
}
b = true;
if (A->T[i] > 0) c = (long)A->T[i]; else c = (long) - A->T[i];
if (i == 0)
printf ("%ld", c);
else if (i == 1)
{ if (c != 1) printf ("%ld*x", c); else printf ("x");
} else
{ if (c != 1) printf ("%ld*x^%d", c, i); else printf ("x^%d", i);
}
}
}
printf ("\n");
}
/*
* R = A + B
*/
int add_poly (struct poly* R, struct poly* A, struct poly* B)
{
int nbOpe=0;
int i;
i = 0;
while (i < A->n && i < B->n)
{ R->T[i] = A->T[i] + B->T[i];
i += 1;
nbOpe+=1;
}
while (i < A->n)
{ R->T[i] = A->T[i];
i += 1;
}
while (i < B->n)
{ R->T[i] = B->T[i];
i += 1;
}
while (i < R->n)
{ R->T[i] = 0.0;
i += 1;
}
return nbOpe;
}
/*
* R = A - B
*/
int sub_poly (struct poly* R, struct poly* A, struct poly* B)
{
int nbOpe=0;
int i;
i = 0;
while (i < A->n && i < B->n)
{ R->T[i] = A->T[i] - B->T[i];
i += 1;
nbOpe+=1;
}
while (i < A->n)
{ R->T[i] = A->T[i];
i += 1;
}
while (i < B->n)
{ R->T[i] = - B->T[i];
i += 1;
}
while (i < R->n)
{ R->T[i] = 0.0;
i += 1;
}
return nbOpe;
}
/*
* R = A * B par la méthode élémentaire
*/
int mul_poly (struct poly* R, struct poly* A, struct poly* B)
{
int nbOpe=0;
int a, b;
for (a = 0; a < R->n; a++)
R->T[a] = 0.0;
for (a = 0; a < A->n; a++){
for (b = 0; b < B->n; b++){
R->T[a+b] = R->T[a+b] + A->T[a] * B->T[b];
nbOpe+=2;
}
}
return nbOpe;
}
/*
* R = A * B par la méthode de Karatsuba
*/
int Karatsuba (struct poly* R, struct poly* A, struct poly* B)
{ struct poly R0, R1, R2, A0, A1, B0, B1, tmpA, tmpB;
int i, p, q;
int nbOpe =0;
/*
* L'algorithme élémentaire est utilisé pour les cas de base
*/
if (A->n == 1 || B->n == 1)
nbOpe+=mul_poly (R, A, B);
else
{
if (A->n < B->n)
p = A->n/2;
else
p = B->n/2;
/*
* Découper les polynômes A et B en deux se fait en temps constant
*/
init2_poly (&A0, A->T, p);
init2_poly (&A1, A->T + p, A->n - p);
init2_poly (&B0, B->T, p);
init2_poly (&B1, B->T + p, B->n - p);
/*
* Les polynômes R0 et R2 sont des sous-tableaux de R.
* On évite ainsi deux recopies de tableaux.
*/
init2_poly (&R0, R->T, 2*p-1);
init2_poly (&R2, R->T + 2*p, A->n + B->n - 1 - 2*p);
nbOpe+=Karatsuba (&R0, &A0, &B0);
nbOpe+=Karatsuba (&R2, &A1, &B1);
/*
* À ce stade, R = R0 + x^(2*p)*R2. On calcule maintenant R1.
*/
if (A0.n > A1.n) q = A0.n; else q = A1.n;
init_poly (&tmpA, q);
nbOpe+= add_poly (&tmpA, &A0, &A1);
if (B0.n > B1.n) q = B0.n; else q = B1.n;
init_poly (&tmpB, q);
nbOpe+=add_poly (&tmpB, &B0, &B1);
q = tmpA.n + tmpB.n - 1;
if (q < R0.n) q = R0.n;
if (q < R2.n) q = R2.n;
init_poly (&R1, q);
nbOpe+= Karatsuba (&R1, &tmpA, &tmpB);
nbOpe+= sub_poly (&R1, &R1, &R0);
nbOpe+= sub_poly (&R1, &R1, &R2);
/*
* R = R + x^p*R1
*/
R->T[2*p-1] = 0;
for (i = 0; i < R1.n; i++){
R->T[p+i] = R->T[p+i] + R1.T[i];
nbOpe++;
}
clear_poly (&A0);
clear_poly (&A1);
clear_poly (&B0);
clear_poly (&B1);
clear_poly (&R0);
clear_poly (&R1);
clear_poly (&R2);
clear_poly (&tmpA);
clear_poly (&tmpB);
}
return nbOpe;
}
int main ()
{ struct poly A, B, R;
int i, n, N;
int nbOpe =0;
int nbNumPoly=0;
srand48 ((long)421);
N = 600; /* taille des polynômes */
init_poly (&A, N);
init_poly (&B, N);
init_poly (&R, 2*N-1);
for (i = 0; i < N; i++)
{
A.T [i] = floor (10.0 * drand48 () - 5.0);
B.T [i] = floor (10.0 * drand48 () - 5.0);
}
printf("#\tn\tf(n)\n");
for (n = 1; n < N; n++)
{
nbOpe=0;
nbNumPoly=0;
A.n = n;
B.n = n;
nbNumPoly=mul_poly (&R, &A, &B);
//print_poly (&R);
nbOpe=Karatsuba (&R, &A, &B);
//print_poly (&R);
// printf("\t%d\t%d",n, nbNumPoly);
printf("\t%d\t%d\n",n, nbOpe);
}
}