In: Computer Science
Use C++ write a "Design and implement a class of infix calculators" ,simply write a function named "evaluateInfix()" that evaluates infix expressions. It should have one string parameter and should return an int result. It should call a separate function named "infixToPostfix()" to convert the infix expression into a postfix expression, and then it should do the work of evaluating the resulting postfix expression. Then write a main() function to thoroughly test the function.
Use the pseudocode algorithm that evaluates postfix expressions given at the end of section 6.3.1 and the pseudocode algorithm that converts an infix expression to postfix form given near the end of section 6.3.2. Use the STL stack class.
Here is the pseudocode for 6.3.1
for ( each character ch in the string) {
if (ch is an operand)
Push the value of the operand ch onto the stack
else // ch is an operator named
{
// Evaluate and push the result
operand2 = top of stack
Pop the stack
operand1 = top of stack
Pop the stack
result = operand1 op operand2
Push result onto the stack
}
}
Here is the pseudocode for 6.3.2
for ( each character ch in the infix expression) {
switch (ch) {
case operand: // Append operand to end of postfix expression—step 1
postfixExp = postfixExp • ch
break
case '(': // Save '(' on stack—step 2
aStack.push(ch)
break
case operator: // Process stack operators of greater precedence—step 3
while (!aStack.isEmpty() and aStack.peek() is not a '(' and precedence(ch) <= precedence(aStack.peek())) {
Append aStack.peek() to the end of postfixExp
aStack.pop()
}
aStack.push(ch) // Save the operator
break
case ')': // Pop stack until matching '(' —step 4
while (aStack.peek() is not a '(')
{ Append aStack.peek() to the end of postfixExp
aStack.pop()
}
aStack.pop() // Remove the open parenthesis
break }
}
// Append to postfixExp the operators remaining in the stack—step 5
while (!aStack.isEmpty())
{ Append aStack.peek() to the end of postfixExp
aStack.pop()
}
#include <iostream>
#include <math>
#include <stack>
#include <string>
using namespace std;
int precedence(char ch)
{
switch (ch)
{
case '+' : case '-' : return 1;
case '*' : case '/' : return 2;
default : return 0;
}
}
string evaluateInfix (const string infix)
{
stack<char> aStack;
string postfix = "";
string::size_type chPos = 0;
while (chPos < infix.length())
{
char ch = infix[chPos];
switch (ch)
{
case '(' :aStack.push(ch);
break;
case ')' :
while (aStack.top() != '(') {
postfix = postfix + aStack.top();
aStack.pop();
}
aStack.pop();
break;
case '+' : case '-' : case '*' : case '/' :
while (!aStack.empty() && aStack.top() != '(' &&
precedence(c) <= precedence(aStack.top())) {
postfix = postfix + aStack.top();
aStack.pop();
}
aStack.push(ch);
break;
case ' ' :
break;
default :
postfix = postfix + ch;
break;
}
++chPos;
}
while (!aStack.empty()) {
postfix = postfix + aStack.top();
aStack.pop();
}
return postfix;
}
int main() {
string infix, postfix;
while (true) {
getline(cin,infix);
infix = infix.substr(0,infix.length()-1);
if (infix.length() == 0) break;
postfix = evaluateInfix(infix);
cout << postfix << endl << endl;
}
return 0;
}