Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

In C++ implement containers based on BST and AVL trees and compare their performance. Also, we practice using basic inheritance. Create a Second class for

In C++ implement containers based on BST and AVL trees and compare their performance. Also, we practice using basic inheritance. Create a Second class for AVL. AVL tree Implement a class template AVL that stores items of class Type in form of AVL tree. Objects of class Type are guaranteed to be comparable and have operator<<. There should be the same public methods as in case of BST and any other private methods that you need. Class AVL should be derived from BST.

Implement a class template BST that stores items of class Type in form of binary search tree. Objects of class Type are guaranteed to be comparable and have operator<<. There should be the following methods:

Default constructor that initializes empty container.

Destructor. Make sure destructor avoids memory leaks.

Height() function returns the height of the tree.

Size() function returns the number of items in container.

Print() function that prints the content of the container sorted in ascending order.

Subscripting operator (operator[]) that returns a reference to the item.

Insert( const Type & ).

Remove( const Type & ).

Copy assignment operator.

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 Concepts International Edition

Authors: David M. Kroenke

6th Edition International Edition

0133098222, 978-0133098228

More Books

Students also viewed these Databases questions

Question

Describe the recruitment process.

Answered: 1 week ago