栈的应用(表达式求值 迷宫路径) 一、表达式求值算数表达式转化成后缀表达式(56-20)/(2+4)转化成56#20#-4#2#+/void trans(char* exp, char postexp[]){ char e; int i = 0; SqStack* Optr; InitStack(Optr); while (*exp != '\0') { s... Other 2023-09-15 199 点赞 3 评论 301 浏览