Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Could someone please help me with this Binary Tree assignment in C++. Thank you! Write your own version of a class template that will create

Could someone please help me with this Binary Tree assignment in C++. Thank you!

Write your own version of a class template that will create a binary tree that can hold values of any data type. Demonstrate the class with a driver program. Place your binary tree template in it's own header file, Btree.h. Include methods for the following:

1. inserting new values into the tree

2. removing nodes from the tree

3. searching the tree

4. returning the number of nodes in the tree

5. displaying the contents of the tree using preorder traversal

Your public interface must include at least the following methods (Where T is a generic parameter ( you can name it anything):

- void insert( T ) - void remove( T ) - bool search( T ) - void preprint() - int count()

Sample Usage: BTree b; b.preprint(); cout << b.count(); b.insert('A'); cout << b.search('A'); b.remove('A'); Should be able to write statements like this in a program and have your class compile and run. The count method must use recursion, you may not store the number of nodes as an attribute within the class. You may not use a container from the STL.

A sample run:

Could be anything that demonstrates the class. A menu-driven program would be great for this.

Perhaps include options for insert, remove, search, count, print operations: (I)nsert (R)emove (S)earch (C)ount (P)rint (Q)uit

And here is the incomplete BTree.h

#ifndef #define

#include using std::cout; using std::endl;

template class BTree { public: // constructor // destructor // public interface prototypes void insert( T ); void remove( T ); void preprint() const; bool search( T value ) const int count() const

private: // define and declare the BTree node here // recursive method prototypes void preprint( Node* ) const; };

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

Oracle Solaris 11.2 System Administration (oracle Press)

Authors: Harry Foxwell

1st Edition

007184421X, 9780071844215

More Books

Students also viewed these Databases questions