
14.14 Exercises,Problems,and Projects 1113
EXERCISES,PROBLEMS, AND PROJECTS
60. Modify the PlayerLinkedList to include two more methods: one that
returns the Player with the first name in alphabetical order, and one
that returns all of the ids of the players playing a given game. You also
need to include the appropriate client code to test your classes.
61. Code a class encapsulating a singly linked list of website objects. A
website has two attributes: a URL address (a String, you do not need
to use the existing URL Java class) and ten or fewer keywords describ-
ing the topic of the website. In addition to insert, delete, peek, and
toString, add one ...