最简单的一元多项式的加减运算,采用线性链表结构 typedef struct Polynode {int coef; int exp; struct Polynode *next; }Polynode,*Polylist;