Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Need help with this project which is due in a week. The project focuses on object-oriented programming and lists. The list will be a doubly-linked
Need help with this project which is due in a week. The project focuses on object-oriented programming and lists. The list will be a doubly-linked list and it will be implemented using nodes and pointers. The data contained in the list will be objects from a class. Additionally, make sure that when you start there are at least 5 items in the list and indicate which IDE you are using for your project development.
- Project data: You will choose one of the following classes to define: Boat, Earthquake, Game, Sport, State, Website, House, Phone, Activist, Plant, Fish, Parrot, and Course. Your class code will include a .h class interface file and a .cpp class definition file. You will choose the data attributes of your class. There should be at least 3 data attributes. At least one of these attributes will be a string, and at least one attribute will be numeric.
- Project data structure: Additionally, you will create classes for a doubly-linked list that will manage a collection of your class objects (e.g., Boats). The list will use dynamically allocated nodes.
- For a user to work with your data and list, you should write a fully functional menu with the following options:
-
- Adding to the front of the list
- Adding to the back of the list
- Searching for and displaying a specific item in the list
- Editing a specified item from the list
- Removing an identified item from the list
- Displaying the entire list
- Ending the program
The following files are required:
- The class driver similar to WorkingWithBooks.cpp (C).
- The class declaration similar to Book.h (A).
- The class implementation file similar to Book.cpp (A).
- A header file for the node class similar to Node.h (B).
- A header file for the list similar to SinglyLinkedList.h (B).
- A class implementation file for the list class similar to SinglyLinkedList.cpp (B).
- A word document that provides a list of the menu items (C.a through C.f) with the complexity of each operation using Big O notation.
Additionally follow all these project instructions:
- Your node file should contain your class name in it (e.g., BoatNode.h)
- Your list file name should contain your class name in it (e.g., BoatList.h and BoatList.cpp)
- Your program should run. Comment out any part of your program that does not work and briefly explain why you think it does not work. This documentation about non-working parts of your program should also be added to your Word document.
- Submit (a) your Word document and separately submit (b) a .zip zipped project folder (not a .rar folder) which will include all the projects files.
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