Q #1. Apply concepts of Advanced Data Structures to implement a template class for array based list with following attributes and functionalities: template class ABList{ private: int max_size; int actual_size; T* list_array; public: ABList(int Size); ~ABList(); int getLength(); Page 2 of 3

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter13: Overloading And Templates
Section: Chapter Questions
Problem 15PE
icon
Related questions
icon
Concept explainers
Question

Q #1. Apply concepts of Advanced Data Structures to implement a template class for
array based list with following attributes and functionalities:
template <class T>
class ABList{
private:
int max_size;
int actual_size;
T* list_array;
public:
ABList(int Size);
~ABList();
int getLength();

Page 2 of 3

T getItem(int);
void insertItem(T value);
int findAndRemoveItem(T);
void displayList();
void MergeList(ABList);
void ReducetoHalf();
};
• Constructor will dynamically allocate the list of size ‘Size’.
• insertItem() function will insert new item at the end of the list, only if item is not
present in the list already. If item is already present, it will display a message,
‘Item already in the list’.
• FindAndRemoveItem() will search an item in the list, if found, item will be removed
from the list. If item is not found, function will return -1.
• ReducetoHalf() will reduce the size of the List to half and copy all the items from the old
list to the new list and destroy the old list.
• MergeLists() will combine two array based lists into one.
• In main(), define two array based lists of type String and size 10. Ask user to
enter 5 names in each of the lists. Merge both the lists and display the resultant
merged list on the screen.

Expert Solution
steps

Step by step

Solved in 6 steps with 6 images

Blurred answer
Knowledge Booster
Types of Linked List
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning