-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path多项式加法和除法.cpp
174 lines (159 loc) · 3.49 KB
/
多项式加法和除法.cpp
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
#include <stdio.h>
#include <stdlib.h>
typedef struct PolyNode *Polynomial;
struct PolyNode
{
int coef;
int expon;
Polynomial link;
};
void Attach(int c, int e, Polynomial *Rear)
{
Polynomial P;
P = (Polynomial)malloc(sizeof(struct PolyNode));
P -> coef = c;
P -> expon = e;
P->link = NULL;
(*Rear)->link = P;
*Rear = P;
}
Polynomial ReadPoly()
{
Polynomial P,Rear, t;
int c, e, N;
scanf("%d", &N);// num of polynomial
P = (Polynomial)malloc(sizeof(struct PolyNode)); // build empty node at first
P ->link = NULL;
Rear = P;
while( N--)
{
scanf("%d %d", &c, &e);
Attach(c, e, &Rear);
}
t = P; P = P->link;
free(t);
return P;
}
void PrintPoly( Polynomial P)
{
int flag = 0;
if(!P)
{
printf("0 0\n");
return ;
}
while(P)
{
if(!flag)
flag = 1;
else
printf(" ");
printf("%d %d",P->coef, P -> expon);
P = P->link;
}
printf("\n");
}
Polynomial Add(Polynomial P1, Polynomial P2)
{
Polynomial P, Rear, t1, t2,temp;
t1 = P1; t2 = P2;
P = (Polynomial)malloc(sizeof(struct PolyNode)); // build empty node at first
Rear = P;
while(t1 && t2)
{
if (t1 -> expon == t2->expon)
{
if(t1->coef+t2->coef != 0)
{
Attach(t1->coef+t2->coef, t1->expon, &Rear);
}
t1 = t1 ->link;
t2 = t2 ->link;
}
else if(t1 -> expon > t2->expon)
{
Attach(t1->coef, t1->expon, &Rear);
t1 = t1 ->link;
}
else
{
Attach(t2->coef, t2->expon, &Rear);
t2 = t2 ->link;
}
}
while(t1)
{
Attach(t1->coef, t1->expon, &Rear);
t1 = t1 ->link;
}
while(t2)
{
Attach(t2->coef, t2->expon, &Rear);
t2 = t2 ->link;
}
Rear->link = NULL;
temp = P;
P = P->link;
free(temp);
return P;
}
Polynomial Mult(Polynomial P1, Polynomial P2)
{
Polynomial P, Rear, t1, t2, t;
int c, e;
if (!P1 || !P2)
return NULL;
t1 = P1; t2 = P2;
P = (Polynomial)malloc(sizeof(struct PolyNode)); // build empty node at first
Rear = P;
while(t2)
{
Attach(t1->coef*t2->coef, t1->expon + t2->expon, &Rear);
t2 = t2 -> link;
}
t1 = t1 -> link;
while(t1)
{
t2 = P2;Rear = P;
while(t2)
{
e = t1 -> expon + t2 ->expon;
c = t1 -> coef * t2 -> coef;
while(Rear->link && Rear ->link->expon > e)
Rear = Rear->link;
if (Rear-> link && Rear->link->expon == e)
{
if (Rear -> link -> coef + c)
Rear -> link->coef += c;
else
{
t = Rear->link;
Rear->link = t->link;
free(t);
}
}
else
{
t = (Polynomial)malloc(sizeof(struct PolyNode));
t->coef = c; t->expon = e;
t->link = Rear->link;
Rear ->link = t; Rear = Rear ->link;
}
t2 = t2->link;
}
t1 = t1->link;
}
t2 = P; P = P->link; free(t2);
return P;
}
int main()
{
Polynomial P1, P2, PP, PS;
P1 = ReadPoly();
P2 = ReadPoly();
PP = Mult(P1,P2);
PrintPoly(PP);
PS = Add(P1,P2);
PrintPoly(PS);
return 0;
}