Question: 14. (17 pts) In this problem you will be working with a dynamically linked binary search tree (BST). Given a class BSTNode with the following

 14. (17 pts) In this problem you will be working with

14. (17 pts) In this problem you will be working with a dynamically linked binary search tree (BST). Given a class BSTNode with the following private data members: BSTNode *mpLeft BSTNode mpRight; string mData; and the following public member functions: BSTNode (const string &newData) BSTNode &getLeft ); BSTNode &getRight string getData) and a class BST with the following private data member: BSTNode *mpRoot,i Write an appropriate recursive insertNode( method that is a member of the BST class. The function should accept a reference to a pointer (&) to a BSTNode and a const reference to the data to insert. The function does not need to return a value. However, no makeNode() function exists

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!