一元多項式相加(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
相關文章
相關標籤/搜索