摘要: 所实现的算法: 括号匹配检查 中缀表达式转后缀表达式 计算转乘后缀后的表达式 数据类型 //用来转后缀表达式 typedef struct{ char data[MaxSize]; int top; }SqStack,SNode; //用来计算后缀表达式 typedef struct{ float 阅读全文
posted @ 2020-07-21 21:27 Drake丶 阅读(365) 评论(0) 推荐(0) 编辑