Ta上传的资源 (0)

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