Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Implement a Deque (Double-Ended Queue) and use that data structure to write a class that can convert between the three common mathematical notation for arithmetic.

Implement a Deque (Double-Ended Queue) and use that data structure to write a class that can convert between the three common mathematical notation for arithmetic.

The three notations are: Postfix (Reverse Polish) Notation:

Operators are written after operands A B - C + == (A - B) + C

Infix Notation:

The standard notation we use where the operator is between the operands.

Prefix (Polish) Notation:

Operators are written before operands: * - A B C == (A - B) * C

The converter will be able to convert from one of those three to any other. The input will be a string written in a single notation, and the output will be the conversion to the specified notation.

The input string for the functions will only ever contain the standard four arithmetic operators (* / + -), an operand denoted by a letter (upper or lower case), a left or right parentheses (only round), or spaces. White space (one or more characters of space) separate all operand and operators, while parentheses must have white space on the outside (between operators), and inside parentheses white space is optional. Parentheses are only used in infix strings. Parentheses must have operators between them, as all operations must be binary and not implied. For example:

ValidPostfix:c d/ab*rr */* ValidPrefix:* + AB-CD Valid Infix: (( X + B ) * ( Y - D ))

Invalid Postfix:c d a b * r r * / * (Operators dont match up with operands) Invalid Prefix: * ^ A B & C D (Invalid Characters) Invalid Infix: ((a / f) ((a * b) / (r * r))) (No operator between parentheses) 

The output string should always separate all operand and operators by ONLY one space. The interior of a parenthesis should have no white space between the letter and the parenthesis or another parenthesis, while the exterior of a parenthesis should be separated by ONLY one space from an operator and none for another parenthesis. For example:

Valid Output: ((x / y) - g) Valid Output: ((x / y) - (a * b)) Valid Output: x y * g / h + 

If your output does not conform to this standard, you will not pass the tests required for this project.

Again, there is an abstract class for you to inherit that has you implementing the following methods.

std::string postfixToInfix(std::string inStr) 

This method takes in a string of postfix notation and returns a string in the infix notation std::string postfixToPrefix(std::string inStr)

This method takes in a string of postfix notation and returns a string in the prefix notation std::string infixToPostfix(std::string inStr)

This method takes in a string of infix notation and returns a string in the postfix notation std::string infixToPrefix(std::string inStr)

This method takes in a string of infix notation and returns a string in the prefix notation std::string prefixToInfix(std::string inStr)

This method takes in a string of prefix notation and returns a string in the postfix notation std::string prefixToPostfix(std::string inStr)

This method takes in a string of prefix notation and returns a string in the postfix notation

These methods will all be instance methods of the class NotationConverter (which must be called NotationConverter). You will also need to implement a fully function deque using a doubly linked list. When writing the methods to convert between the notations, you can ONLY use your deque and strings for storing data in the algorithms. You may not use the any C++ Standard Library containers, such as the STL Deque, Stack, Queue, Vector, or List.

This project will be tested using the Catch2 (https://github.com/catchorg/Catch2) test framework.

This framework only requires that a program include the header to run the test file. The test file that will be used to grade the project is included and can be used to test your code before submitting. For your convenience, this project contains the Catch2 header. The course documents include a quick tutorial on how to use Catch2 and test files. I require and expect that you keep the Catch2 header in your project directory at that directories base.

Examples

Below are some examples of how your code should run. The test file can also be used to get an idea of how the code should run.

NotationConverter nc; 
std::string examplePost = "c d / a b * r r * / *"; nc.postfixToInfix(examplePost) // Infix: ((c / d) * ((a * b) / (r * r))) nc.postfixToPrefix(examplePost) // Prefix * / c d / * a b * r r 
std::string examplePre = "* + A B - C D; nc.prefixToInfix(examplePre) // Infix: ((A + B) * (C - D)) nc.prefixToPostfix(examplePre) // Postfix A B + C D - * 
std::string exampleInfix = "((a / f) ((a * b) / (r * r)))"; nc.infixToPostfix(exampleInfix) // Postfix: a f / a b * r r * / nc.infixToPrefix(exampleInfix) // Prefix / a f / * a b * r r 

Abstratc Class code is the following:

#ifndef NOTATIONCONVERTERINTERFACE_H

#define NOTATIONCONVERTERINTERFACE_H

#include

class NotationConverterInterface

{

public:

virtual std::string postfixToInfix(std::string inStr) = 0;

virtual std::string postfixToPrefix(std::string inStr) = 0;

virtual std::string infixToPostfix(std::string inStr) = 0;

virtual std::string infixToPrefix(std::string inStr) = 0;

virtual std::string prefixToInfix(std::string inStr) = 0;

virtual std::string prefixToPostfix(std::string inStr) = 0;

};

#endif /* NOTATIONCONVERTERINTERFACE_H */

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Professional SQL Server 2012 Internals And Troubleshooting

Authors: Christian Bolton, Justin Langford

1st Edition

1118177657, 9781118177655

More Books

Students also viewed these Databases questions