栈的应用(表达式求值 迷宫路径) 一、表达式求值算数表达式转化成后缀表达式(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 57 点赞 0 评论 86 浏览