一元多項式運算

已知n階多項式An(X)和m階多項式Bn(X),求他們的和Cn(X). 運行代碼: #include<stdio.h> #include<stdlib.h> struct node{ int coef ; //存儲項係數 int index; //存儲項指數 struct node * next; }; typedef struct node NODE; char BiJiao(int i,i
相關文章
相關標籤/搜索