CS 201-01-13F Programming In C++ Program 4

$30.00

Category: You will Instantly receive a download link for .zip solution file upon Payment

Description

5/5 - (3 votes)

Create a folder called “PG4” in the top level of your CS201-01-13F folder. Place all files
pertaining to this assignment into that folder. Place a (possibly empty) file called “DONE” into
this folder when you are ready to have your programs graded. The only files you need to turn in
are the .cpp and the .h files.
Write the following program in C++:
You are to write a program that adds book titles to a library. The library must be stored in a
linked list with the book titles appearing in alphabetical order within the linked list. There are to
be no loops in your linked list and linked list node classes; these classes must use recursion only.
Loops are allowed in your main. Your main may reference the linked list class, but it may not
reference the linked list node class in any way.
Your program will accept a series of commands for you to process.
ADD “Book Title”
This adds a title to the linked list. The title is allowed to contain spaces. The title will begin and
end with quotes, but the quotes are NOT part of the title. If the book is already present, it will
not be added to the linked list. Titles are case-insensitive. If the list already contains “DOG,”
you should not be allowed to add “dog”
PRINT
Prints out all books in the linked list in alphabetical order, case insensitive. “A” comes before
“b” and “a” comes before “B”.
REMOVE “substring”
Removes all books whose title contains the substring. For example, REMOVE “the” removes all
books that have “the” somewhere in the title, beginning, middle, or end, as a whole word or as a
partial word. Again, this is case insensitive. REMOVE “the” removes all titles with
“The”,”THE”,”ThE”, etc.
EXIT
Ends the program.
The commands themselves are case insensitive. For example, Exit, eXit, exit, etc. should all exit
the program.