////数字与运算符直接要有空格 //#include //#include //#include //#include //using namespace std; //char s[10000]; //stack p; //long long x,y; //int main(){ // gets_s(s); // int i=0; // while(s[i]!='@'){ // switch(s[i]){ // case '+': // y=p.top();p.pop();x=p.top();p.pop();p.push(x+y);break; // case '-': // y=p.top();p.pop();x=p.top();p.pop();p.push(x-y);break; // case '*': // y=p.top();p.pop();x=p.top();p.pop();p.push(x*y);break; // case '/': // y=p.t
2022-09-02 20:28:32 985B 后缀表达式
1
数据结构C++版,将中缀表达式变换为后缀并用后缀表达式求值,支持运算符包括+,-,*,/,^,(),支持小数,负数,多位数运算
2021-10-23 16:56:51 6KB 数据结构 C++
1
后缀表达式求值,有源程序和开发文档,用一种非常之观的计算器方式表示
2021-10-21 02:47:08 408KB 后缀表达式求值
1
表达式求值(带括号,+,-,*,/的) 用栈实现,C语言代码
2021-04-29 17:38:39 305KB 逆波兰 后缀 表达式求值
1
后缀表达式求值,练习堆栈,算法。大家需要可以参考下
2019-12-21 19:55:25 5KB 后缀 堆栈
1
实现数据结构中后缀表达式值的c语言完整可运行代码。
2019-12-21 19:52:48 4KB 表达式求值
1