-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPOLYAMIT.C
155 lines (135 loc) · 3.1 KB
/
POLYAMIT.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
#include<stdio.h>
#include<conio.h>
#include<alloc.h>
#include<stdlib.h>
#include<ctype.h>
typedef struct nodeType
{
int coeff;
int power;
struct nodeType *next;
} node;
void readPolynomial(node **);
void printPolynomial(node *);
void addPolynomial(node *, node *, node **);
void addNode(node **, int, int);
void deletePolynomial(node **);
void main()
{
node *poly1, *poly2, *poly3;
int choice, element, after, before;
poly1 = poly2 =poly3 = NULL;
clrscr();
printf("\n Porgram to add two polynomials");
printf("\n--------------------------------\n");
printf("\nEnter first polynomial:");
readPolynomial(&poly1);
printf("\nEnter second polynomial:");
readPolynomial(&poly2);
addPolynomial(poly1, poly2, &poly3);
printf("\n sum of polynomials\n");
printPolynomial(poly1);
printf("\n and \n");
printPolynomial(poly2);
printf("\n is \n");
printPolynomial(poly3);
getch();
deletePolynomial(&poly1);
deletePolynomial(&poly2);
deletePolynomial(&poly3);
}
void addNode(node **ptr, int coef, int powe)
{
node *tempPtr;
tempPtr -> coeff = coef;
tempPtr -> power = powe;
if(*ptr == NULL)
{
tempPtr -> next = NULL;
*ptr = tempPtr;
}
else
{
tempPtr -> next = *ptr;
}
}
void readPolynomial(node **p)
{
int coeficient, power;
printf("\nEnter the term in the ascending order of power");
while(1)
{
printf("\nEnter the degree of x:");
scanf("%d",&power);
printf("\nEnter its coeficient:");
scanf("%f",&coeficient);
addNode(p,coeficient,power);
printf("\nAny more term (Y/N) ?");
if(toupper(getch()) == 'Y')
break;
}
}
void printPolynomial(node *ptr)
{
if(ptr != NULL)
printf("%d x %d",ptr -> coeff, ptr -> power);
for(ptr = ptr -> next; ptr != NULL; ptr = ptr ->next)
{
if(ptr -> coeff > 0)
printf(" + ");
if(ptr -> power == 0)
printf("%d",ptr -> coeff);
else if(ptr -> power == 1)
printf("%dx",ptr -> coeff);
else printf("%dx^%d", ptr -> coeff, ptr -> power);
}
}
void addPolynomial(node* ptr1, node* ptr2, node** ptr3)
{
int powe;
float coef;
while((ptr1 != NULL) && (ptr2 != NULL))
{
if(ptr1 -> power > ptr2 -> power)
{
coef = ptr1 -> coeff;
powe =ptr1 -> power;
ptr1 = ptr1 -> next;
}
else if(ptr1 -> power < ptr2 -> power)
{
coef = ptr2 -> coeff;
powe =ptr2 -> power;
ptr2 = ptr2 -> next;
}
else
{
coef = ptr1 -> coeff + ptr2 -> coeff;
powe = ptr1 -> power;
ptr1 = ptr1 -> next;
ptr2 = ptr2 -> next;
}
if(coef != 0)
addNode(ptr3, coef, powe);
}
if(ptr1 == NULL)
{
for(; ptr2 != NULL; ptr1 = ptr2 -> next)
addNode(ptr3, ptr2 -> coeff, ptr2 -> power);
}
else if(ptr2 == NULL)
{
for(; ptr1 != NULL; ptr1 = ptr1 -> next)
addNode(ptr3, ptr1 -> coeff, ptr1 -> power);
}
}
void deletePolynomial(node **ptr)
{
node *temp;
while(*ptr != NULL)
{
temp = *ptr;
*ptr = (*ptr) -> next;
free(temp);
}
}