c語言多項式相加,兩個多項式相加運算(用c語言)

2021-05-02 22:07:01 字數 5692 閱讀 7941

1樓:

#include

#include

typedef struct node

term;

void sort(term *head)s=s->next;

}p=p->next;}}

term *polynadd(term *head1,term *head2)

p=p->next;

q=q->next;

}else if(p->n>q->n)

else

}while(p!=null)

while(q!=null)

r->next=null;

return head3;

}term *createpolyn(int m)p->next=null;

return head;

}dayin(term *head)

printf("\n");

}main()

2樓:蕙欣

scanf("%f %d",&coef,&exp);

ptr->coef = coef;

ptr->exp = exp;

ptr->next=null;

if(head=null)

head=ptr;

else

tail=ptr;

}while(n>i);

return head;

}應改為

scanf("%f %d",&coef,&exp);

ptr->coef = coef;

ptr->exp = exp;

ptr->next=null;

if(head=null)

else

}while(n>i);

}你現在試試看啊

3樓:湛鑲彤

#include

#include

struct sll

;struct sll *add(struct sll *head, int a, int r)

if(t->r == r)

tt->next = t->next;

free(t);

return head;}}

if(t->r < r)

return head;

}void print(struct sll *head)}int main()

print(head);

return 0;}

兩個多項式相加運算(用c語言)

4樓:匿名使用者

#include

#include

#define null 0

typedef struct node

listnode,*list;

list createlist()

else

if(curr!=null && curr->expo == p->expo)

//插入結點,結點非首

if(prev != null)

//插入結點,結點為首

else

}printf("want to create a new node?y/n\n");

fflush(stdin);

scanf("%c",&ch);

}return head;

}list add(list head1,list head2)else if(ptr1->expo < ptr2->expo)else

if(head==null)

else

}while(ptr1 != null)

ptr1 = ptr1->next;

}while(ptr2 != null)

ptr2 = ptr2->next;

}return head;

}void display(list head)printf("\n");

}int main(int argc, char* argv)

5樓:淦海瑤

這個問題比較簡單了,用連結串列的話,建立乙個結構體,三個元素,乙個float型,乙個int型,乙個結構體指標

建立連結串列很簡單,固定格式

兩個連結串列合併更簡單,吧第二個連結串列的head直接賦值給第乙個連結串列的最後哪個節點就可以

排序,用哪個int型做比較,交換節點的指標就可以做到輸出更簡單,固定格式,用指標,一路下去就可以,這個節點的哪個指標賦值給輸出的指標,一路下去就可以,當指標成為null結束

c語言寫多項式相加怎麼寫?

6樓:匿名使用者

分都不給。。。算了,以前寫了個就給你吧。/*此程式結構比較清晰,用單鏈表實現了多項式的加法。

具體原理可以參考清華大學嚴蔚敏資料《結構c語言版》第二章注意:此程式假設輸入的多項式已經排好序(從低到高)程式在vc6下編譯通過*/#includenbsp;amp;lt;stdio.hamp;gt;#includenbsp;amp;lt;stdlib.

hamp;gt;#includenbsp;amp;lt;malloc.hamp;gt;#includenbsp;amp;lt;conio.hamp;gt;nbsp;/*getchnbsp;function*/typedefnbsp;structnbsp;nodenbsp;node;nodenbsp;*creat(intnbsp;n);voidnbsp;print(nodenbsp;*head);nodenbsp;*addpolyn(nodenbsp;*head1,nbsp;nodenbsp;*head2);nodenbsp;*delfirst(nodenbsp;*head,nbsp;nodenbsp;*q);voidnbsp;insertbefore(nodenbsp;*p1,nbsp;nodenbsp;*p2);intnbsp;nbsp;compare(intnbsp;a,nbsp;intnbsp;b);main()/*建立連結串列*/nodenbsp;*creat(intnbsp;n)nbsp;previous-amp;gt;nextnbsp;=nbsp;null;nbsp;returnnbsp;head;}/*nbsp;一元多項式的加法nbsp;,總體考慮,可分qa的指數比qb小,或等於pb(如果係數相加等於0和不等於0),或大於pb裡面由insertbefore和delfirst兩個小模組組成一部分*/nodenbsp;nbsp;*addpolyn(nodenbsp;*head1,nbsp;nodenbsp;*head2){nbsp;nodenbsp;*ha,nbsp;*hb,nbsp;*qa,nbsp;*qb;nbsp;intnbsp;a,nbsp;b;nbsp;floatnbsp;sum;nbsp;hanbsp;=nbsp;head1;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;/*ha和hb指向頭結點*/nbsp;hbnbsp;=nbsp;head2;nbsp;qanbsp;=nbsp;ha-amp;gt;next;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;/*qa和qb指向頭結點的下乙個結點*/nbsp;qbnbsp;=nbsp;hb-amp;gt;next;nbsp;while(qanbsp;amp;amp;nbsp;qb)nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;/*qa和qb均非空*/nbsp;{nbsp;nbsp;anbsp;=nbsp;qa-amp;gt;expn;nbsp;nbsp;nbsp;bnbsp;=nbsp;qb-amp;gt;expn;nbsp;nbsp;switch(compare(a,nbsp;b))nbsp;{nbsp;nbsp;casenbsp;-1nbsp;:

用c語言編寫多項式相加的程式,下面圖中前兩個是要相加的多項式 第三個是相加後的結果,求好心人拜託了

7樓:匿名使用者

#include

#include

#include

#define eps 1e-6

typedef struct item  *polynomial,*pitem;

polynomial create()

p->next = null;

return head;

}void sort(polynomial head)

else q = q->next;

}p = p->next;}}

void show(polynomial head)

else if(p->coefficient == 1.0) printf("x^%d ",p->power);

else if(p->coefficient == -1.0) printf("-x^%d ",p->power);

else printf("%.2lfx^%d ",p->coefficient,p->power);

flag = 0;}}

else if(p->coefficient > 0.0 && fabs(p->coefficient) >= eps)

else if(p->coefficient == 1.0) printf("+ x^%d ",p->power);

else printf("+ %.2lfx^%d ",p->coefficient,p->power);

}else if(p->coefficient < 0.0 && fabs(p->coefficient) >= eps)

else if(p->coefficient == -1.0) printf("- x^%d ",p->power);

else printf("- %.2lfx^%d ",-p->coefficient,p->power);

}p = p->next;

}printf("\n");

}double power(double x,int n)

double value(polynomial head,double x)

polynomial copy(polynomial a)

t->next = null;

return head;

}polynomial additive(polynomial a, polynomial b)

break;

}q = q->next;

}if(q->next == null)

}sort(head);

return head;

}polynomial subtract(polynomial a, polynomial b)

break;

}q = q->next;

}if(q->next == null)

}sort(head);

return head;

}polynomial multiplication(polynomial a, polynomial b)

}t->next = null;

sort(head); // 排序

p = head;

while(p->next)

else q = q->next;

}p = p->next;

}return head;

}void freememory(polynomial head)

}int main()

多項式的次數,多項式的次數是什麼。

解 多項式的次數為其中一項得次數 這一項未知數的次數之和最高例子 2x y 3x 5 5y 4 這個多項式共有三項 2x y 3x 5 5y 4 其中第一項和第二項未知數的次數之和都是5而第三項為4,因此這個多項式次數為5 懂了 要平分 動力。什麼叫做多項式 係數,次數,項,項數 什麼統稱為 幾個單...

當ab為何值時多項式,當a,b為何值時,多項式a22ab2b22a4b27有最小值,並求出最小值

求多項式關於a,b的偏導數,讓其都為0,二元一次方程組求解 a 4,b 3 當a,b為何值時,多項式a2 2ab 2b2 2a 4b 27有最小值,並求出最小值 設原式復 y,y a 2a 2b 2,y b 2a 4b 4,極值制點兩者均為0,即 a,b 4,3 時有極值16 24 18 8 12 ...

數學之多項式的除法運算

1.原式 x 4 x 3 43x 2 x 42 x 3 x 1 43x 42 x 1 x 1 x 3 x 42 x 1 x 1 x 1 x 1 x 42 x 1 x 1 x 6 x 7 2.原式 x 3 x 4 27 x 4 x 4 x 3 27 x 4 x 3 x 2 3x 9 3.利用綜合除法試...