Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

c++ language Each Directory contains a number of entries; Implement class Directory with the following: 1. Three private data member: (6 points) a int maxSize

c++ language
image text in transcribed
image text in transcribed
image text in transcribed
Each Directory contains a number of entries; Implement class Directory with the following: 1. Three private data member: (6 points) a int maxSize int current to track the current number of entries in the Directory. This attribute gets modified whenever an entry is inserted or removed from list. c. string list a pointer a dynamic array of strings that represent the names of the contacts in the entries. b. 2. The following public member functions: (54 points): Use this pointer in all member function of the class thar rake one or more parameters. 4. Defaulted parameterized constructor that receive only one integer parameter for the maxSize data member.it set the current data member to zero, create and fill the list with **N/A". The Default value of maxSize is 10. b. Deep Copy Constructor. Directory: Deallocate the list. disEmptyo, a boolean function that returns true il current 0. and Mise otherwise, isFullo), a boolean function that returns true if current maxSize, and false otherwise. int lindestring entry) returns the index of entry found in list, otherwise returns -1 void insert(string entryname thin luncur du the owing Inserts entrename in the The Director both the Directory Sindi lana entrename KONTROLINIS line 2. The following public member functions: (54 points): I Use this pointer in all member function of the class that take one or more parameters. a. Defaulted parameterized constructor that receive only one integer parameter for the maxSize data member.it set the current data member to zero, create and fill the list with "N/A". The Default value of maxSize is 10. b. Deep Copy Constructor. c. Directory(): Deallocate the list. disEmpty0, a boolean function that returns true if current = = 0. and false otherwise. c. is Fullo, a boolean function that returns true if current == maxSize, and false otherwise. { int find(string entry) returns the index of entry if found in list, otherwise returns - 1. 9. void insert(string entryname) this function does the following: 1. Inserts entryname into the end of the list in the Directory. if both: the Directory is not full and entryname does not exist in list. 11. If entryname to be inserted is already in list, then print a message saying the entry won't be inserted because it already exists in list. 11. If entryname is not in list, but list is full, then print a suitable message to say that the insert operation failed - verd printDirectoryo: prints the names of the contacts in the entries currently in the Directory alongside their number index). 1. Setter and getter for maxSize. 3. getter for current data member. k. float utilization() that calculates the percentage of used entries in a Directory. (hint: utilization is 100*current/maxSize). Make sure that the division is a floating-point division. 1. make all the member functions that do not change or modify data constant. 3. Define friend function void Erase(Directory& obj, int i): if the Directory is not empty and if the index (i) is between 0 and current-1. inclusive, it removes the entry from list in Directory and shifts remaining entries to left to fill the gap. Otherwise, it prints a message that indicate if the Directory is empty or the index (i) is out of range

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered 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

Students also viewed these Databases questions