c语言版多项式的加减 typedef struct term{ //多项式结点的定义 float coef; //系数 int exp; //指数 struct term *link; //链接指针 }*Poly;