PAGE PAGE # / 6 #i nclude #i nclude #i nclude typedef int ElemType; /*单项链表的声明*/ typedef struct PolynNode{ int coef; // 系数 int expn; // 指数 struct PolynN ode *n ext; }Poly