Question
USING JAVA, EVERYTHING MUST BE DONE USING COLLECTION THANKS, Exercise 2 Implement a class that maintains a list of the top ten performers in a
USING JAVA, EVERYTHING MUST BE DONE USING COLLECTION THANKS,
Exercise 2
Implement a class that maintains a list of the top ten performers in a video game. An entry on the list consists of a name and score, and the list is kept sorted in descending order of scores. Here is an example of such a list when it has only four elements. Spike 120, Whiz 105, G-Man 99, JediMaster 95.
Use a class based on linked lists. The class should have:
-a constructor that sets up an empty list,
- a void insert(String name, int score) method that adds a name and a score pair to the list.
The insert method puts the entry in the proper position so that the list stays sorted by score. The list should have a maximum size of 10. After the list has 10 elements, an attempt to add a name with a score that is less than or equal to the minimum score on the list is ignored, and adding a score that is greater than the minimum score causes an entry with the minimum score to be dropped from the list
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started