Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

USING C++ (NOT C) , WRITE FUNCTIONS WHICH IMPLEMENT A BINARY SEARCH TREE CLASS WITH A GIVEN HEADER FILE BELOW (MUST REMAIN UNCHANGED) #ifndef BST_H_

USING C++ (NOT C) , WRITE FUNCTIONS WHICH IMPLEMENT A BINARY SEARCH TREE CLASS WITH A GIVEN HEADER FILE BELOW (MUST REMAIN UNCHANGED)

#ifndef BST_H_ #define BST_H_ #include #include #include using namespace std; template class BST { private: struct Node { bstdata data; Node* leftchild; Node* rightchild; Node(bstdata newdata){ data = newdata; leftchild = NULL; rightchild = NULL; } }; Node* root; /**Private helper functions*/ void insertNode(Node* root, bstdata data); //private helper function for insert //recursively inserts a value into the BST void inOrderPrint(ostream& out, Node* root) const; //private helper function for inOrderPrint //recursively prints tree values in order from smallest to largest void preOrderPrint(ostream& out, Node* root) const; //private helper function for preOrderPrint //recursively prints tree values in pre order void postOrderPrint(ostream& out, Node* root) const; //private helper function for postOrderPrint //recursively prints tree values in post order void copyNode(Node* copy) const; //recursive helper function to the copy constructor void freeNode(Node* root); //private helper function for the destructor //recursively frees the memory in the BST bool searchNode(Node* root, bstdata data); //recursive helper function to search //returns whether the value is found in the tree bstdata minimum(Node* root) const; //recursive helper function to minimum //returns the minimum value in the tree bstdata maximum(Node* root) const; //recursive helper function to maximum //returns the maximum value in the tree Node* deleteNode(Node* root, bstdata data); //recursive helper function to remove //removes data from the tree void getSize(Node* root, int& size) const; //recursive helper function to the size function //calculates the size of the tree //stores the result in size int getHeight(Node* root) const; //recursive helper function to the height function //returns the height of the tree public: /**constructors and destructor*/ BST(); //Instantiates a new BST BST(const BST &bst); //copy constructor ~BST(); //deallocates the tree memory /**access functions*/ bstdata minimum() const; //returns the minimum value in the BST //pre: !empty() bstdata maximum() const; //returns the maximum value in the BST //pre: !empty() bool isEmpty() const; //determines whether the BST is empty int getSize() const; //returns the size of the tree bstdata getRoot() const; //returns the value stored at the root of the BST //pre: !isEmpty() int getHeight() const; //returns the height of the tree bool search(bstdata data) const; //returns whether the data is found in the tree //pre: !isEmpty() /**manipulation procedures*/ void insert(bstdata data); //inserts new data into the BST void remove(bstdata data); //removes the specified value from the tree //pre: data is located in the tree //pre: !isEmpty() /**additional functions*/ void inOrderPrint(ostream& out) const; //calls the inOrderPrint function to print out the values //stored in the BST void preOrderPrint(ostream& out) const; //calls the reOrderPrint function to print out the values //stored in the BST void postOrderPrint(ostream& out) const; //calls the postOrderPrint function to print out the values //stored in the BST };

#endif /* BST_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

Database Driven Web Sites

Authors: Joline Morrison, Mike Morrison

2nd Edition

? 061906448X, 978-0619064488

More Books

Students also viewed these Databases questions