题目描述:读入一个只包含+,-,*,/的非负整数计算表达式,计算该表达式的值。
输入格式:测试输入包含若干测试用例,每个测试用例占一行,每行不超过200个字符,整数和运算符之间有一个空格。没有非法表达式。当一行中只有0输入时结束,相应的结果不要输出。
输出格式:对每个测试用例输出1行,即该表达式的值,精确到小数点后两位。
源程序:
#include<iostream>
#include<cstdio>
#include<string>
#include<stack>
#include<queue>
#include<map>
using namespace std;
struct node{
double num;//操作数
char op;//操作符
bool flag;//true表示操作数,false表示操作符
};
string str;
stack<node> s;//操作符栈
queue<node> q;//后缀表达式序列
map<char,int> op;
//1.将中缀表达式转换为后缀表达式
void Change(){
double num;
node temp;
for(int i = 0;i<str.length();){
if(str[i]>='0'&&str[i]<='9'){//如果是数字
temp.flag = true;//标记是数字
temp.num = str[i++] - '0';//记录这个数字的第一位
while(i<str.length()&&str[i]>='0'&&str[i]<='9'){
temp.num = temp.num * 10 + (str[i] - '0');//更新这个操作数
i++;
}
q.push(temp);
}else{//如果是操作符
temp.flag = false;//标记是操作符
//只要操作符栈的栈顶元素比该操作符优先级高
//就把操作符栈栈顶元素弹出到后缀表达式序列中
while(!s.empty()&&op[str[i]]<=op[s.pop().op]){
q.push(s.top());
s.pop();
}
temp.op = str[i];
s.push(temp);//把该操作符压入操作符栈中
i++;
}
}
//如果操作符栈中还有操作符,就把它弹出到后缀表达式队列中
while(!s.empty()){
q.push(s.top());
s.pop();
}
}
//2.计算后缀表达式
double Cal(){
double temp1,temp2;
node cur,temp;
while(!q.empty()){//只要后缀表达式非空
cur = q.front();//记录队首元素
q.pop();
if(cur.flag==true)s.push(cur);
else{//如果是操作符
temp2 = s.top().num;
s.pop();
temp1 = s.top().num;
s.pop();
temp.flag = true;
if(cur.op=='+')temp.num = temp1 + temp2;
else if(cur.op=='-')temp.num = temp1 - temp2;
else if(cur.op=='*')temp.num = temp1 * temp2;
else temp.num = temp1 / temp2;
s.push(temp);//把该操作数压入栈
}
}
return s.top().num;//栈顶元素就是后缀表达式的值
}
int main(){
op['+'] = op['-'] = 1;
op['*'] = op['/'] = 2;
while(getline(cin,str),str!="0"){
for(string::iterator it = str.end();it!=str.begin();it--){
if(*it == ' ')str.erase(it);
}
while(!s.empty())s.pop();//初始化栈
Change();//将中缀表达式转换为后缀表达式
printf("%.2f\n",Cal());//计算后缀表达式的值
}
return 0;
}
本文介绍了一种算法,用于将包含基本算术运算符的中缀表达式转换为后缀表达式,并计算其结果。通过使用栈和队列数据结构,实现了表达式的解析和计算。

1019

被折叠的 条评论
为什么被折叠?



