NYOJ 128

简介: 前缀式计算 时间限制:1000 ms  |  内存限制:65535 KB 难度:3   描述 先说明一下什么是中缀式: 如2+(3+4)*5这种我们最常见的式子就是中缀式。 而把中缀式按运算顺序加上括号就是:(2+((3+4)*5)) 然后把运算符写到括号前面就是+(2 *( +(3 4) 5) ) 把括号去掉就是:+ 2 * + 3 4 5 最后这个式子就是该表达式的前缀表示。

前缀式计算
时间限制: 1000 ms  |  内存限制: 65535 KB
难度: 3
 
描述

先说明一下什么是中缀式:

如2+(3+4)*5这种我们最常见的式子就是中缀式。

而把中缀式按运算顺序加上括号就是:(2+((3+4)*5))

然后把运算符写到括号前面就是+(2 *( +(3 4) 5) )

把括号去掉就是:+ 2 * + 3 4 5

最后这个式子就是该表达式的前缀表示。

给你一个前缀表达式,请你计算出该前缀式的值。

比如:

+ 2 * + 3 4 5的值就是 37

 
输入
有多组测试数据,每组测试数据占一行,任意两个操作符之间,任意两个操作数之间,操作数与操作符之间都有一个空格。输入的两个操作数可能是小数,数据保证输入的数都是正数,并且都小于10,操作数数目不超过500。
以EOF为输入结束的标志。
输出
对每组数据,输出该前缀表达式的值。输出结果保留两位小数。
样例输入
+ 2 * + 3 4 5
+ 5.1 / 3 7
样例输出
37.00
5.53



//NYOJ HDU均AC #include <cstdio> #include <cstring> #include <stack> #include <cstdlib> using namespace std; char str[3500]; int main() { while(gets(str)!=NULL) { stack <char> num; stack <double> operand; while(!operand.empty()) operand.pop(); int len=strlen(str); for(int i=len-1; i>=0; i--) { switch(str[i]) { case ' ': if(!num.empty()) { double number = 0; while(!num.empty() && num.top() != '.') { int t = num.top() - '0'; num.pop(); number = number * 10 + t; } if(!num.empty()) { num.pop();//去掉点号 double index = 0.1; while(!num.empty()) { int t = num.top() - '0'; num.pop(); number = number + t * index; index /= 10; } } operand.push(number); } break; case '+': double a, b; a = operand.top(), operand.pop(); b = operand.top(), operand.pop(); a = a + b; operand.push(a); break; case '-': a = operand.top(), operand.pop(); b = operand.top(), operand.pop(); a = a - b; operand.push(a); break; case '*': a = operand.top(), operand.pop(); b = operand.top(), operand.pop(); a = a * b; operand.push(a); break; case '/': a = operand.top(), operand.pop(); b = operand.top(), operand.pop(); a = a / b; operand.push(a); break; default: num.push(str[i]); } } double result = operand.top(); printf("%.2f\n", result); memset(str,0,sizeof(str)); } system("pause"); return 0; } //NYOJ AC,hdu re #include <cstdio> #include <cstring> #include <stack> #include <cctype> #include <cmath> #include <cstdlib> using namespace std; char str[3500]; int sign(char c) { switch(c) { case '+': return 1; case '-': return 2; case '*': return 3; case '/': return 4; default : return 0; } } int main() { int i,j,p,q; while(gets(str)!=NULL) { stack <float> s; int len=strlen(str); for(i=len-1;i>=0;i--)//或者用scanf从标一输入,不用移位 str[i+1]=str[i]; str[0]=' '; str[len+1]=' '; float temp1,temp2,temp; if(len==1) s.push((float)(str[1]-'0')); else for(i=len;i>=1;i--) { if(isdigit(str[i])&&str[i-1]==' '&&str[i+1]==' ') s.push((float)(str[i]-'0')); else if(str[i]=='.') { float e=0.1; temp1=temp2=0; temp1=(float)(str[i-1]-'0'); for(q=i+1;str[q]!=' ';q++) { temp2+=(str[q]-'0')*e; e/=10; } temp=temp1+temp2; s.push(temp); } else if(str[i]=='+'||str[i]=='-'||str[i]=='*'||str[i]=='/') { int flag=sign(str[i]); switch(flag) { case 1:{temp1=s.top();s.pop();temp2=s.top(),s.pop();temp=temp1+temp2;s.push(temp);break;} case 2:{temp1=s.top();s.pop();temp2=s.top(),s.pop();temp=temp1-temp2;s.push(temp);break;} case 3:{temp1=s.top();s.pop();temp2=s.top(),s.pop();temp=temp1*temp2;s.push(temp);break;} case 4:{temp1=s.top();s.pop();temp2=s.top(),s.pop();temp=temp1/temp2;s.push(temp);break;} default : continue; } } } printf("%.2f\n",s.top()); while(!s.empty()) s.pop(); } return 0; }

 

 

目录
相关文章
|
测试技术
NYOJ 541
  最强DE 战斗力 时间限制:1000 ms  |  内存限制:65535 KB 难度:3   描述 春秋战国时期,赵国地大物博,资源非常丰富,人民安居乐业。但许多国家对它虎视眈眈,准备联合起来对赵国发起一场战争。
773 0
|
人工智能 测试技术
NYOJ&#160;79
拦截导弹 时间限制:3000 ms  |  内存限制:65535 KB 难度:3 描述 某国为了防御敌国的导弹袭击,发展中一种导弹拦截系统。但是这种导弹拦截系统有一个缺陷:虽然它的第一发炮弹能够到达任意 的高度,但是以后每一发炮弹都不能高于等于前一发的高度。
960 0
NYOJ 283
1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 using namespace std; 8 /* 9 bool cmp(char *a,char *b) 10...
489 0
|
测试技术
NYOJ 523
  亡命逃窜 时间限制:1000 ms | 内存限制:65535 KB 难度:4   描述   从前有个叫hck的骑士,为了救我们美丽的公主,潜入魔王的老巢,够英雄吧。不过英雄不是这么好当的。
916 0
|
网络协议
NYOJ 8
  一种排序 时间限制:3000 ms | 内存限制:65535 KB 难度:3   描述 现在有很多长方形,每一个长方形都有一个编号,这个编号可以重复;还知道这个长方形的宽和长,编号、长、宽都是整数;现在要求按照一下方式排序(默认排序规则都是从小到大);1.
794 0
NYOJ 113
1 #include 2 #include 3 using namespace std; 4 5 int main() 6 { 7 int pos=-1; 8 string s; 9 while(getline(cin,s)) 10 { 11 while((pos=s.
682 0
NYOJ 93
  汉诺塔(三) 时间限制:3000 ms | 内存限制:65535 KB 难度:3   描述 在印度,有这么一个古老的传说:在世界中心贝拿勒斯(在印度北部)的圣庙里,一块黄铜板上插着三根宝石针。
601 0
|
测试技术
NYOJ 467
  中缀式变后缀式 时间限制:1000 ms  |  内存限制:65535 KB 难度:3   描述 人们的日常习惯是把算术表达式写成中缀式,但对于机器来说更“习惯于”后缀式,关于算术表达式的中缀式和后缀式的论述一般的数据结构书都有相关内容可供参看,这里不再赘述,现在你的任务是将中缀式变为后缀式。
727 0
|
人工智能
NYOJ 104(最大子矩阵和)
  此代码在全为-2时,输出0,显然错误,因为函数下标从0开始,而传递的参数希望他从1开始 #include#include int a[101][101],b[10010];int subsequencesum(int a[],int n){ int sum=0,maxsum=0,i; f...
607 0