标签:
题目1019:简单计算器
时间限制:1 秒
内存限制:32 兆
特殊判题:否
1 + 2 4 + 2 * 5 - 7 / 11 0
3.00 13.36
#include <iostream> #include<stdio.h> #include<stack> using namespace std; char str[220]; int mat[][5]= { {1,0,0,0,0}, {1,0,0,0,0},//+ {1,0,0,0,0},//- {1,1,1,0,0},//* {1,1,1,0,0}// / }; stack<int> op;//运算符栈,保存运算符编号 stack<double> in; void getOp(bool &reto,int &retn,int &i) { if(i==0&&op.empty()==true) { reto=true; retn=0; return ; } if(str[i]==0) { reto=true; retn=0; return ; } if(str[i]>=‘0‘&&str[i]<=‘9‘) { reto =false; } else { reto=true; if(str[i]==‘+‘) { retn=1; } else if(str[i]==‘-‘) { retn =2; } else if(str[i]==‘*‘) { retn =3; } else if(str[i]==‘/‘) { retn =4; } i+=2;//跳过该运算符以及运算符后的空格 return; } retn=0;// 返回结果为数字 for(; str[i]!=‘ ‘&&str[i]!=0; i++) { retn*=10; retn+=str[i]-‘0‘; } if(str[i]==‘ ‘) i++; return ; } int main() { while(gets(str)) { if(str[0]==‘0‘&&str[1]==0) { break; } bool retop; int retnum;//定义函数需要使用的引用变量 int idx=0;//字符串下标 while(!op.empty()) op.pop();//符号 while(!in.empty()) in.pop();//数字 while(true) { getOp(retop,retnum,idx); if(retop==false) { in.push((double)retnum);//将其压入数字堆栈 } else { double tmp; if(op.empty()==true||mat[retnum][op.top()]==1) { op.push(retnum); } else { while(mat[retnum][op.top()]==0) { int ret=op.top();//保存符号栈顶元素 op.pop(); double b=in.top(); in.pop(); double a=in.top(); in.pop(); if(ret==1) tmp=a+b; else if(ret==2) tmp=a-b; else if(ret==3) tmp=a*b; else tmp=a/b; in.push(tmp);//将数字压入堆栈 } op.push(retnum); } } if(op.size()==2&&op.top()==0) break; } printf("%.2f\n",in.top()); } return 0; } /************************************************************** Problem: 1019 User: zhuoyuezai Language: C++ Result: Accepted Time:0 ms Memory:1524 kb ****************************************************************/
标签:
原文地址:http://www.cnblogs.com/zhuoyuezai/p/5699815.html