Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

using c++ i nedd the implemntation of each function please // // ExpressionTree.h // // Class declarations for the linked implementation of the // Expression

using c++ i nedd the implemntation of each function please // // ExpressionTree.h // // Class declarations for the linked implementation of the // Expression Tree ADT -- including the recursive helpers for the // public member functions // // Instructor copy with the recursive helper function declarations. // The student version does not have those, but has a place to write // the declarations in the private section. // //--------------------------------------------------------------------

#ifndef EXPRESSIONTREE_H #define EXPRESSIONTREE_H

#include #include

using namespace std;

template class ExprTree { public:

// Constructor ExprTree (); ExprTree(const ExprTree& source);

ExprTree& operator=(const ExprTree& source);

// Destructor ~ExprTree ();

// Expression tree manipulation operations void build (); void expression () const; DataType evaluate() const throw (logic_error); void clear (); // Clear tree void commute(); bool isEquivalent(const ExprTree& source) const;

// Output the tree structure -- used in testing/debugging void showStructure () const;

private:

class ExprTreeNode { public: // Constructor ExprTreeNode ( char elem, ExprTreeNode *leftPtr, ExprTreeNode *rightPtr );

// Data members char dataItem; // Expression tree data item ExprTreeNode *left, // Pointer to the left child *right; // Pointer to the right child };

// Recursive helper functions for the public member functions -- insert // prototypes of these functions here.

// Data member ExprTreeNode *root; // Pointer to the root node };

#endif // #ifndef EXPRESSIONTREE_H

//-------------------------------------------------------------------- // // Laboratory 8 test8.cpp // // Test program for the operations in the Expression Tree ADT // //-------------------------------------------------------------------- #include "stdafx.h" #include #include

using namespace std;

//#include "ExprTree.cpp" #include "ExpressionTree.cpp" #include "config.h"

//-------------------------------------------------------------------- // Function prototype

template void dummy ( ExprTree copyTree ); // copyTree is passed by value

//--------------------------------------------------------------------

int main() { #if !LAB8_TEST1 || LAB8_TEST2 || LAB8_TEST3 // Don't do this if testing boolean tree, unless also testing programming // exercises 2 or 3 (for which this section is mostly needed). // The tricky part occurs if testing exercise 1 and (2 or 3), or if // someone is trying to test the basic class and one of the other exercises // in parallel. Hence the #if expression above. cout << "Start of testing the basic expression tree" << endl; ExprTree testExpression; // Test expression

cout << endl << "Enter an expression in prefix form : ";

testExpression.build(); testExpression.showStructure(); testExpression.expression(); cout << " = " << testExpression.evaluate() << endl;

// Test the copy constructor. dummy(testExpression); cout << endl << "Original tree:" << endl; testExpression.showStructure(); #endif

#if LAB8_TEST1 cout << "Start of testing the boolean expression tree" << endl; ExprTree boolTree; cout << endl << "Enter a boolean expression in prefix form : "; boolTree.build(); boolTree.showStructure(); boolTree.expression(); cout << " = " << boolTree.evaluate() << endl; cout << "** End of testing the boolean expression tree" << endl; #endif

#if LAB8_TEST2 cout << "Start of testing commute()" << endl; testExpression.commute(); cout << endl << "Fully commuted tree: " << endl; testExpression.showStructure(); testExpression.expression(); cout << " = " << testExpression.evaluate() << endl; cout << "End of testing commute()" << endl; #endif

#if LAB8_TEST3 cout << "Start of testing isEquivalent()" << endl; ExprTree same = testExpression; cout << "same is equal (tests copy constructor) ? "; cout << (same.isEquivalent(testExpression) ? "Yes" : "No") << endl;

ExprTree empty; cout << "empty is equal? "; cout << (empty.isEquivalent(testExpression) ? "Yes" : "No") << endl;

ExprTree userExpression; cout << "Enter another expression in prefix form: "; userExpression.build(); cout << "new expression is equal? "; cout << (userExpression.isEquivalent(testExpression) ? "Yes" : "No") << endl; cout << "** End of testing isEquivalent()" << endl; #endif

#if !LAB8_TEST1 && !LAB8_TEST2 && !LAB8_TEST3 // Don't bother with this if testing any of the programming exercises cout << endl << "Clear the tree" << endl; testExpression.clear(); testExpression.showStructure(); cout << "** End of testing the basic expression tree" << endl; #endif

return 0; }

//--------------------------------------------------------------------

template void dummy ( ExprTree copyTree )

// Dummy routine that is passed an expression tree using call by // value. Outputs copyTree and clears it.

{ cout << endl << "Copy of tree: " << endl; copyTree.showStructure(); copyTree.clear(); cout << "Copy cleared: " << endl; copyTree.showStructure(); }

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

Advances In Databases And Information Systems 14th East European Conference Adbis 2010 Novi Sad Serbia September 2010 Proceedings Lncs 6295

Authors: Barbara Catania ,Mirjana Ivanovic ,Bernhard Thalheim

2010th Edition

3642155758, 978-3642155758

More Books

Students also viewed these Databases questions