Question: 1. Create a C++ project that contains the following classes and their associated member functions (all from the textbook and slide a) linked List Type

1. Create a C++ project that contains the following classes and their associated member functions (all from the textbook and slide a) linked List Type b) unorderedLinkedList c) OrderedLinkedList 2. Extend the class linkedListType by adding the following operations: a. Find and delete the node with the smallest info in the list. (Delete only the first occurrence and traverse the list only once.) b. Find and delete all occurrences of a given info from the list. (Traverse the list only once.) Add these as abstract functions in the class linkedListType and provide the definitions of these functions in the class unorderedLinkedlist. Also write a program to test these functions
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
