一元多项式运算

已知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
相关文章
相关标签/搜索