An arithmetic expression

Assignment Help C/C++ Programming
Reference no: EM13720900

Hi dbrs3 - want more work?

Question

The second project involves completing and extending the C++ program that evaluates statements of an expression language contained in the module 3 case study.

The statements of that expression language consist of an arithmetic expression followed by a list of assignments. Assignments are separated from the expression and each other by commas. A semicolon terminates the expression. The arithmetic expressions are fully parenthesized infix expressions containing integer literals and variables. The valid arithmetic operators are +, -, *, /. Tokens can be separated by any number of spaces. Variable names begin with an alphabetic character, followed by any number of alphanumeric characters. Variable names are case sensitive. This syntax is described by BNF and regular expressions in the case study.

The program reads in the arithmetic expression and encodes the expression as a binary tree. After the expression has been read in, the variable assignments are read in and the variables and their values of the variables are placed into the symbol table. Finally the expression is evaluated recursively.

Your first task is to complete the program provided by providing the three missing classes, Minus, Times and Divide.

Next, you should extend the program so that it supports relational, logical and conditional expression operators as defined by the following extension to the grammar:

<exp> -> '(' <operand> <op> <operand> ')' |
'(' <operand> ':' <operand> '?' <operand> ')' |
'(' <operand> '!' ')'
<op> -> '+' | '-' | '*' | '/' | '>' | '<' | '=' | '&' | '|'

Note that there are a few differences in the use of these operators compared to their customary use in the C family of languages. There differences are

In the conditional expression operator the symbols are reversed and the third operand represents the condition. The first operand is the value when true and the second the value when false
The logical operators use single symbols not double, for example the and operator is & not &&
The negation operator ! is a postfix operator, not a prefix one
There are only three relational operators not the usual six and the operator for equality is = not ==

Like C and C++, any arithmetic expression can be interpreted as a logical value, taking 0 as false and anything else as true

Your final task is to make the following two modifications to the program:

The program should accept input from a file, allowing for multiple expressions arranged one per line. Some hints for accomplishing this transformation will be provided in the conference
All results should be changed from double to int. In particular the evaluate function should return an int.

You may assume that all input to the program is syntactically correct.

You must include all source and header files.

Module Case Study:

The case study for this module incorporates two of the language features that we discussed-expressions and assignments. The program interprets fully parenthesized arithmetic expressions that contain either literal values or variables. The variables must then subsequently be assigned values.

The grammar for the language that this interpreter accepts is defined by the following grammar:

<program> ? <exp> , <assigns> ;
<exp> ? ( <operand> <op> <operand> )
<operand> ? <literal> | <variable> | <exp>
<assigns> ? <assigns> , <assign> | <assign>
<assign> ? <variable> = <literal>

The regular expressions defining the three tokens are the following:

<op> [+-*/]
<variable> [a-zA-Z][a-zA-Z0-9]*
<literal> [0-9]+

So, if you were to enter the following expression:

(x + (y * 3)), x = 2, y = 6;

the interpreter would respond:

Value = 20

The interpreter itself is written in C++. The complete program consists of 10 classes. We will present 7 of them. Your instructor may ask you to complete this program, perhaps enhance it, and add some error checking as one of the programming projects.

We begin with the main function and one subordinate function, which are contained in module3.cpp. The main function reads in the program, calls upon the static function parse of the SubExpression class to parse it, and builds an arithmetic expression tree. It then calls the subordinate function parseAssignments to parse the assignments and enter them into the symbol table, and then evaluates the expression and displays the result. That code is shown below:

#include <iostream>
#include <string>
#include <vector>
using namespace std;

#include "expression.h"
#include "subexpression.h"
#include "symboltable.h"
#include "parse.h"

SymbolTable symbolTable;

void parseAssignments();

int main()
{
Expression* expression;
char paren, comma;
cout << "Enter expression: ";
cin >> paren;
expression = SubExpression::parse();
cin >> comma;
parseAssignments();
cout << "Value = " << expression->evaluate() << endl;
return 0;
}

void parseAssignments()
{
char assignop, delimiter;
string variable;
double value;
do
{
variable = parseName();
cin >> ws >> assignop >> value >> delimiter;
symbolTable.insert(variable, value);
}
while (delimiter == ',');
}

The arithmetic expression tree is built using an inheritance hierarchy. At the root of the hierarchy is the abstract class Expression. The class definition for Expression is contained in the file expression.h, shown below:

class Expression
{
public:
virtual double evaluate() = 0;
};

This abstract class has two subclasses. The first of these is SubExpression, which defines the node of the binary arithmetic expression tree. The class definition for SubExpression is contained in the file subexpression.h, shown below:

class SubExpression: public Expression
{
public:
SubExpression(Expression* left, Expression* right);
static Expression* parse();
protected:
Expression* left;
Expression* right;
};

As is customary in C++, the bodies of the member functions of that class are contained in the file subexpression.cpp, shown below:

#include <iostream>
using namespace std;

#include "expression.h"
#include "subexpression.h"
#include "operand.h"
#include "plus.h"
#include "minus.h"
#include "times.h"
#include "divide.h"

SubExpression::SubExpression(Expression* left, Expression* right)
{
this->left = left;
this->right = right;
}

Expression* SubExpression::parse()
{
Expression* left;
Expression* right;
char operation, paren;

left = Operand::parse();
cin >> operation;
right = Operand::parse();
cin >> paren;
switch (operation)
{
case '+':
return new Plus(left, right);
case '-':
return new Minus(left, right);
case '*':
return new Times(left, right);
case '/':
return new Divide(left, right);
}
return 0;
}

The SubExpression class has four subclasses. We show one of them-Plus. The class definition for Plus is contained in the file plus.h, shown below:

class Plus: public SubExpression
{
public:
Plus(Expression* left, Expression* right):
SubExpression(left, right)
{
}
double evaluate()
{
return left->evaluate() + right->evaluate();
}
};

Because the bodies of both member functions are inline, no corresponding .cpp file is required.

The other subclass of Expression is Operand, which defines the leaf nodes of the arithmetic expression tree. The class definition for Operand is contained in the file operand.h, shown below:

class Operand: public Expression
{
public:
static Expression* parse();
};

The body of its only member function is contained in operand.cpp, shown below:

#include <cctype>
#include <iostream>
#include <list>
#include <string>

using namespace std;

#include "expression.h"
#include "subexpression.h"
#include "operand.h"
#include "variable.h"
#include "literal.h"
#include "parse.h"

Expression* Operand::parse()
{
char paren;
double value;

cin >> ws;
if (isdigit(cin.peek()))
{
cin >> value;
Expression* literal = new Literal(value);
return literal;
}
if (cin.peek() == '(')
{
cin >> paren;
return SubExpression::parse();
}
else
return new Variable(parseName());
return 0;
}

The Operand class has two subclasses. The first is Variable, which defines leaf nodes of the tree that contain variables. The class definition for Variable is contained in the file variable.h, shown below:

class Variable: public Operand
{
public:
Variable(string name)
{
this->name = name;
}
double Variable::evaluate();
private:
string name;
};

The body of its member function evaluate is contained in variable.cpp, shown below:

#include <strstream>
#include <vector>
using namespace std;

#include "expression.h"
#include "operand.h"
#include "variable.h"
#include "symboltable.h"

extern SymbolTable symbolTable;

double Variable::evaluate()
{
return symbolTable.lookUp(name);
}

The other subclass of Operand is Literal, which defines leaf nodes of the tree that contain literal values. The class definition for Literal is contained in the file literal.h, shown below:

class Literal: public Operand
{
public:
Literal(int value)
{
this->value = value;
}
double evaluate()
{
return value;
}
private:
int value;
};

This interpreter uses a symbol table that is implemented with an unsorted list defined by the class SymbolTable. Its class definition is contained in the file symboltable.h, shown below:

class SymbolTable
{
public:
SymbolTable() {}
void insert(string variable, double value);
double lookUp(string variable) const;
private:
struct Symbol
{
Symbol(string variable, double value)
{
this->variable = variable;
this->value = value;
}
string variable;
double value;
};
vector <Symbol> elements;
};

The bodies of its member functions are in the file symboltable.cpp, shown below:

#include <string>
#include <vector>
using namespace std;

#include "symboltable.h"


void SymbolTable::insert(string variable, double value)
{
const Symbol& symbol = Symbol(variable, value);
elements.push_back(symbol);
}

double SymbolTable::lookUp(string variable) const
{
for (int i = 0; i < elements.size(); i++)
if (elements[i].variable == variable)
return elements[i].value;
return -1;
}

Finally, one utility function, parseName, is needed by this program. Its function prototype is the file parse.h, shown below:

string parseName();

Its body is in parse.cpp, shown below:

#include <cctype>
#include <iostream>
#include <string>
using namespace std;

#include "parse.h"

string parseName()
{
char alnum;
string name = "";

cin >> ws;
while (isalnum(cin.peek()))
{
cin >> alnum;
name += alnum;
}
return name;
}

Reference no: EM13720900

Questions Cloud

Research on the topic of cyber law or internet law : The director of your department has requested that you conduct some research on the topic of cyber law or Internet law. He has asked you to draft a memo including the following information:
Calculate circus cost of debt and cost : Determine the appropriate weights to use in determining Circus' WACC and calculate Circus' cost of debt and cost of issuing new common equity.
Explain management team by drafting organizational chart : Question 1: Define the management team by drafting an organizational chart and a plan for hiring employees. Question 2: Draft the key employee policies and a code of ethics.
Job description-job analysis and basic pay structure : Now that you have your job description, job analysis, and basic pay structure created for your new position, start to take a look at the benefits you will offer this employee.
An arithmetic expression : The statements of that expression language consist of an arithmetic expression followed by a list of assignments. Assignments are separated from the expression and each other by commas. A semicolon terminates the expression. The arithmetic expr..
Link between investment and growth : Read the section called "A Clear Vision: The Link Between Investment and Growth" in the following article. In 1-2 pages, evaluate the article with the following:
How is the ceo and other top leaders displaying leadership : How is the CEO and other top leaders at GE displaying Generative Leadership in their leading of GE.
Develop an application for the game of memory : Use object-oriented programming to develop an application for the game of memory. Memory consists of a 20 × 20 grid of face down cards where there is at most one pair of each card in the grid. The types of cards that are available in this versi..
Successful onboarding programs : Using the resources in your Reading area, as well as further research, read about successful onboarding programs conducted by a few of the large, successful and admired corporations.

Reviews

Write a Review

C/C++ Programming Questions & Answers

  Implementation of sorting technique

Implementation of sorting technique

  Rationalnumber class a rational number is a number that can

rationalnumber class a rational number is a number that can be represented as the quotient of two nbspintegers. for

  Write a program for a graphics system

Write a program for a graphics system that has classes for rectangles, squares, circles and triangles. Each of these must be derived from a base class

  Calculation the distance and time printed on the screen

After each calculation the distance and time printed on the screen and accumulated to the sum of the total distance and sum of the total time. The current destination should be saved as the old postion for the next calculation

  State diagram to recognize one form

Design a state diagram to recognize one form of the comments of the C-based programming languages, those that begin with /* and end with */. and also Write and test the code to implement the state diagram.

  You are required to prepare a program for assessment system

you are required to prepare a program for assessment system of a university. the main idea is to evaluate the gpa

  Struct definition to represent the data of a person''s bank

Define a struct definition to represent the data of a person's bank account. There will be one string for the name, and two doubles for balance and interest rate. Declare two variables of this new type in the main function. Modify the values of each ..

  Write a for loop that adds the integers

Write a for loop that adds the integers between lo and hi (inclusive), and stores the result in result.

  Describe floyd''s algorithm finds the shortest paths

A shortest path between vertex a and b is a path with the minimum sum of weights of the edges on the path. Floyd's algorithm finds the shortest paths of all vertex pairs of a graph.

  Write a count occurrences() function that accepts a string

Write a CountOccurrences() function that accepts a string to be searched and a sub-string to be found. The function should return the # of times the sub-string is found. Write a tester file that declares a secret sentence as a constant.

  Aimsthe main purpose of the assignment is to let you

aimsthe main purpose of the assignment is to let you practice the following programming techniques read data from

  Returns the number of days in a month

Using only "If" statements.  Returns the number of days in a month.  Each month will be shown by a corresponding integer. This is not the most correct calculation, but Leap Year will be calculated using (Year/4) to determine if the input year is a..

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd