本文主要是介绍noi.openjudge 3340:RPN Calculator,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
http://noi.openjudge.cn/ch0303/3340/
描述
Reverse Polish notation (or just RPN) by analogy with the related Polish notation, a prefix notation introduced in 1920 by the Polish mathematician Jan Łukasiewicz, is a mathematical notation wherein every operator follows all of its operands. It is also known as Postfix notation.
In Reverse Polish notation the operators follow their operands; for instance, to add three and four one would write “3 4 +” rather than “3 + 4”. If there are multiple operations, the operator is given immediately after its second operand; so the expression written “3 − 4 + 5” in conventional infix notation would be written “3 4 − 5 +” in RPN: first subtract 4 from 3, then add 5 to that. An advantage of RPN is that it obviates the need for parentheses that are required by infix. While “3 − 4 * 5” can also be written “3 − (4 * 5)”, that means something quite different from “(3 − 4) * 5”, and only the parentheses disambiguate the two meanings. In postfix, the former would be written “3 4 5 * −”, which unambiguously means “3 (4 5 *) −”.
You were asked to design a simple RPN calculator, which will support the “+”, “-“, “*”, “/”(the absolute value of the divisor will not less then 10^-9) and “^”(power operator, if the base number b<=0, the exponential e must be a positive integer not greater than 10^9) operators. You can assume all the numbers during the calculation can fit into a double-precision floating point number.
In addition, our calculator has some memory. Each time we calculate an expression, the smallest number in the memory will be erased, and replace it with the value of the expression.
输入
The first line contains an integer n, which is the memory size of our calculator.
From the second line, we will give n numbers, which is the initial value of the memory. each line except last will have 10 numbers.
And then each line has a valid RPN expression we previously described, end with “=”, which is the command for calculation. Each term will no longer than 20 characters.
输出
For each expression, output the value of it in a line.
And then output an empty line to separate the two parts.
At last, output the all the numbers in memory, in increasing order, 10 numbers per line.
Each number should be formatted in scientific notation with 6 digits after decimal point and 2 digits of exponential, such like “%e” format string of printf() function in C. The numbers in a line should be separated by a space.
样例输入
4
1e6 1e-6 0.001 1000
1 2 + 3 4 + * =
1 0.1 / 8 ^ =
样例输出
2.100000e+01
1.000000e+082.100000e+01 1.000000e+03 1.000000e+06 1.000000e+08
提示
Huge input, scanf() is recommended
%e格式输出在windows环境下指数部分为3位,在系统的测试环境下为2位。
代码
/*
后缀表达式的计算
用一个栈来存储数字,从左向左右遍历表达式
遇到数字就压栈
遇到操作符就弹出栈中的两个数字计算并压栈
最后栈中剩余的数字是我们要的结果
*/
#include<iostream>
#include<iomanip>
#include<stdio.h>
#include<math.h>
#include<stack>
#include<queue>
using namespace std;void cal(string param, stack<double> &num)
{double num1=num.top();num.pop();double num2=num.top();num.pop();if(param=="+")num.push(num2+num1);if(param=="-")num.push(num2-num1);if(param=="*")num.push(num2*num1);if(param=="/")num.push(num2/num1);if(param=="^")num.push(pow(num2,num1));
}void bolan(string ¶m, stack<double> &num)
{if(param!="+" && param!="*" && param!="-" && param!="/" && param!="^")// 遇到数字就入栈 num.push(atof(param.c_str()));else// 遇到操作符就计算,并将结果入栈 cal(param, num);
}int main()
{int n,i,index1,index2,count;string param;cin>>n;// 初始化memorypriority_queue < double,vector<double>,greater<double> > p;vector<double> nums;for(i=0;i<n;i++){double inData;cin>>inData;p.push(inData);}getchar();// 计算后缀表达式的值stack <double> bolan_num;string command;while(getline(cin,command)){index1=0,index2=command.length()-1;// 从右向左遍历表达式 获取操作符和数字for(i=0; i<=command.length(); i++)if(command[i]==' ' || command[i]=='\0'){index2=i;param=command.substr(index1, index2-index1);index1=index2+1;if(param=="="){// 用新计算出的值,替换掉memory中的最小值printf("%e\n",bolan_num.top());p.pop();p.push(bolan_num.top());bolan_num.pop();if(!bolan_num.empty())cout<<"expect empty"<<endl;}elsebolan(param, bolan_num);}}printf("\n");// 输出memory中的值count=0;for(i=1; i<=n; i++){count++;if(i==n)printf("%e",p.top());else if(count%10==0)printf("%e\n",p.top());elseprintf("%e ",p.top());p.pop();}return 0;
}
这篇关于noi.openjudge 3340:RPN Calculator的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!