Question: In C++, with dynamic array and three files .cpp .h and main file. 1. Make a class named PersonalBest to. Implement an string attribute that
In C++, with dynamic array and three files .cpp .h and main file.
1. Make a class named PersonalBest
to. Implement an string attribute that stores the player's name.
b. Implement a dynamic array where you will store the heights and dates in
those that the player jumps were made.
c. Make a class named Date with operators to simulate the dates of each of the player's jumps.
d. Order the heights from greatest to least.
2.Make a class named PersonalBestArray and make it part of class PersonalBest with class composition.
PersonalBestArray made up of n number of players.
3. Perform the Sort Algorithm within said class
4. Implement the operators (<<, >>, <,>, []) inside the class
PersonalBestArray
5. Implement a menu of options to perform:
to. Add a player.
b. Eliminate a player.
c. Do a search for a specific player.
6. Include Constructors, Copy Constructors, mutators, accessors, and operators in your
implementation
Personal Best
Write a program that asks for the name of a pole vaulter and the dates and vault heights (in meters) of the athletes three best vaults. It should then report, in order of height (best first), the date on which each vault was made and its height.
Input Validation: Only accept values between 2.0 and 5.0 for the heights.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
