本文主要是介绍HDU1237 简单计算器【堆栈】,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
简单计算器
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 21518 Accepted Submission(s): 7722
读入一个只包含 +, -, *, / 的非负整数计算表达式,计算该表达式的值。
对每个测试用例输出1行,即该表达式的值,精确到小数点后2位。
Sample Input
1 + 2 4 + 2 * 5 - 7 / 11 0
Sample Output
3.00 13.36
浙大计算机研究生复试上机考试-2006年
问题链接:HDU1237 简单计算器。
问题描述:参见上文。
问题分析:这是一个表达式求值问题,可以用递归来处理,也可以用堆栈来处理。
程序说明:程序中,使用堆栈来处理运算符的优先级,运算符和操作符分别放在两个堆栈中。
参考链接:(略)
AC的C++语言程序:
/* HDU1237 简单计算器 */#include <iostream>
#include <string>
#include <stack>
#include <cctype>
#include <cstdio>using namespace std;int main()
{string s;stack<char> op;stack<double> operand;double operand1, operand2;while(getline(cin, s) && s != "0") {for(int i=0; s[i]; i++) {if(isdigit(s[i])) {operand1 = 0;while(isdigit(s[i])) {operand1 = operand1 * 10 + s[i] - '0';i++;}i--;operand.push(operand1);} else if(s[i] == '+' || s[i] == '-') {if(op.empty())op.push(s[i]);else {char sop = op.top();op.pop();operand2 = operand.top();operand.pop();operand1 = operand.top();operand.pop();if(sop == '+')operand.push(operand1 + operand2);elseoperand.push(operand1 - operand2);op.push(s[i]);}} else if(s[i] == '*' || s[i] == '/') {char cop = s[i];i += 2;operand2 = 0;while(isdigit(s[i])) {operand2 = operand2 * 10 + s[i] - '0';i++;}i--;operand1 = operand.top();operand.pop();if(cop == '*')operand.push(operand1 * operand2);elseoperand.push(operand1 / operand2);}}while(!op.empty()) {char sop = op.top();op.pop();operand2 = operand.top();operand.pop();operand1 = operand.top();operand.pop();if(sop == '+')operand.push(operand1 + operand2);elseoperand.push(operand1 - operand2);}printf("%.2f\n", operand.top());}return 0;
}
这篇关于HDU1237 简单计算器【堆栈】的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!