妩媚魔镜

文章
1
资源
1
加入时间
3年2月0天

多项式Polynomial

#include #include #include #include /*将多项式存放在栈中,实现逆波兰运算 默认多项式倒序排列*/typedef struct term {// 存放多项式的结构体 int coef; int exp; struct term *link;}Term, *sTerm;typedef struct termStac