顺序表应用之两个一元多项式求和

#include <stdio.h> #include <malloc.h> typedef struct node{ int coef;//系数 int exp;//指数 struct node *next; }NODE; NODE *creatPoly(){ int coef; int exp; NODE *head,*tail,*s;//
相关文章
相关标签/搜索