一元多项式相加(C语言实现)

poly.hnode #ifndef _POLY_H_ #define _POLY_H_ #include<stdio.h> #include<stdlib.h> #include<malloc.h> //结点结构 typedef struct Polynode { int coef; int exp; struct Polynode * next; }Polynode
相关文章
相关标签/搜索