#include> #include> #include> typedef int ElemType; /* 单项链表的声明 */ typedef struct PolynNode{ int coef; // 系数 int expn; // 指数 struct PolynNode *next; }PolynNode*PolynList; /* 正位序 (插在表尾 )输入 n 个元素的值建立带表头