Question

In: Computer Science

Use C++ write a "Design and implement a class of infix calculators" ,simply write a function...

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()

}

Solutions

Expert Solution

#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;
} 

Related Solutions

Using STL stack class, implement in C++ a function that converts an infix expression to postfix...
Using STL stack class, implement in C++ a function that converts an infix expression to postfix expression,
Code in C++ Learning Outcomes Implement two stacks and use them to implement an infix to...
Code in C++ Learning Outcomes Implement two stacks and use them to implement an infix to prefix expression convertor Stacks A stack is an abstract data type which uses a sequential container and limits access to that container to one end. You may enter or remove from the container, but only at one end. Using the Linked List data structure from your last homework assignment, implement a Stack of type string. The Stack should only have one data member: the...
In C++, Implement the heapafication operation. Do not re-implement the binary tree class. Simply create a...
In C++, Implement the heapafication operation. Do not re-implement the binary tree class. Simply create a funcntion that takes in a binary tree and heapafies it. Meaning it takes in a pointer to a binary tree and converts it into a heap. (You may choose max or min heap).
Use Verilog to design and implement a function as  c = c+∑b*ai, i is from 1 to...
Use Verilog to design and implement a function as  c = c+∑b*ai, i is from 1 to 8. Here ai is stored in a SRAM with width as 16 and depth as 8 (8 rows of 16‐bit data), and b is stored in a 16‐bit register. c is initialized as 0.
DO THIS IN C#,Design and implement class Rectangle to represent a rectangle object. The class defines...
DO THIS IN C#,Design and implement class Rectangle to represent a rectangle object. The class defines the following attributes (variables) and methods: 1. Two Class variables of type double named height and width to represent the height and width of the rectangle. Set their default values to 1.0 in the default constructor. 2. A non-argument constructor method to create a default rectangle. 3. Another constructor method to create a rectangle with user-specified height and width. 4. Method getArea() that returns...
IN C++!!! Exercise #1: Design and implement class Rectangle to represent a rectangle object. The class...
IN C++!!! Exercise #1: Design and implement class Rectangle to represent a rectangle object. The class defines the following attributes (variables) and methods: Two Class variables of type double named height and width to represent the height and width of the rectangle. Set their default values to 0 in the default constructor. A non-argument constructor method to create a default rectangle. Another constructor method to create a rectangle with user-specified height and width. Method getArea() that returns the area. Method...
Implement an infix expression to postfix expression convertor in C++. Note: - Support +, -, *,...
Implement an infix expression to postfix expression convertor in C++. Note: - Support +, -, *, /, ( and ) in infix expressions. - Operands will be nonnegative only. - Assume infix expressions are valid and well formatted (one blank space to separate operand/operator) For example, - 3 * 4 + 5 ➔ 3 4 * 5 + - 3 + 4 * 5 ➔ 3 4 5 * + - (3 + 4) * (5 + 6) ➔ 3...
Write a program to implement and analyzing the Bubble Sort. a. Write a C++ function for...
Write a program to implement and analyzing the Bubble Sort. a. Write a C++ function for Bubble Sort b. Use a dynamic array of integers in a variable size of n. c. Display the following information: 1) Total counts of comparisons 2) Total counts of shifts / moves / swaps, whichever applies d. Write a main() function to test a best, and an average cases in terms of time efficiency i. Fill out the array with random numbers for an...
C++ ONLY! Implement the find function for the List class. It takes a string as an...
C++ ONLY! Implement the find function for the List class. It takes a string as an argument and returns an iterator to a matching node. If no matching node, it returns a null iterator. #include <iostream> #include <cstddef> #include <string> using Item = std::string; class List { private: class ListNode { public: Item item; ListNode * next; ListNode(Item i, ListNode *n=nullptr) { item = i; next = n; } };    ListNode * head; ListNode * tail;    public: class...
For this computer assignment, you are to write a C++ program to implement a class for...
For this computer assignment, you are to write a C++ program to implement a class for binary trees. To deal with variety of data types, implement this class as a template. Most of the public member functions of the BinaryTree class call private member functions of the class (with the same name). These private member functions can be implemented as either recursive or non-recursive, but clearly, recursive versions of these functions are preferable because of their short and simple implementations...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT