1. 算法描述:
- 输入一个中缀表达式,包括+,-,*,/,(,) 的四则运算,求其计算结果.
2. 算法思想:
将中序转换成后序;
利用栈的数据结构和后序表达式求值
#include<iostream>
#include<stack>
#include<string>
#include<map>
#include<sstream>
#include<fstream>
using namespace std;
const string infixToPostfix(const string &infix);
void ifGetdigit(char ch, string &postfix);
void ifGetOperator(char ch, string &postfix, stack<char> &Stack_operators);
void isLeftParenthesis(char ch, stack<char> &Stack_operators);
void isRightParenthesis(string &postfix, stack<char> &Stack_operators);
void isArithmeticOperator(char ch, string &postfix, stack<char> &Stack_operators);
bool lastOneIsRightParenthesis(const string &postfix);
void appendOperatorsLeft(string &postfix, stack<