多项式Polynomial #include #include #include #include /*将多项式存放在栈中,实现逆波兰运算 默认多项式倒序排列*/typedef struct term {// 存放多项式的结构体 int coef; int exp; struct term *link;}Term, *sTerm;typedef struct termStac 数据结构与算法 2023-12-30 34 点赞 0 评论 51 浏览