Define a variation on StringLinkedListSelfContained from Listing 12.7 that stores objects of type Species, rather than of type String. Write a program that uses that linked-list class to create a linked list of Species objects, asks the user to enter a Species name, and then searches the linked list and displays one of the following messages, depending on whether the name is or is not on the list:
Species Species_Name is one of the
Number_Of_Species_Names_On_List species on the list.
The data for Species_Name is as follows:
Data_For_Species_Name
or
Species Species_Name is not a species on the list.
The user can enter more Species names until indicating an end to the program. The class Species is given in Listing 5.19 of Chapter 5. (If you prefer, you can use the serialized version of Species in Listing 10.9 of Chapter 10.)
This is closely related to the solution of the next project which reads and writes to a file.
You might also like to view...
Rather than using classful routing, ________________ subnet masks allow you to divide your network into different sizes to make better use of available addresses.
Fill in the blank(s) with the appropriate word(s).
In OpenOffice Calc, the ________ function chooses adjacent cells that contain numbers, adds the values, and displays the total in the cell that contains the function
A) SUM B) COUNT C) AVERAGE D) MODE
A computer's system requirements are the minimum hardware and software specifications required to run a software application
Indicate whether the statement is true or false
The following conditional expression is written in the C language. It is true when the value of the variable a is outside the range of 20 to 30 (including end points) and false otherwise:
!(a < = 20 && a > = 30) Which of the following conditional expressions is equivalent? a) a>20 &&a<30 b) a<20 &&a>30 c) a>=20 &&a<=30 d) a>20 Ha<30 e) a < = 20 II a > = 30 f) a<20 Ila>30