Question: Hello, I need help to do the following C++ program. I am confused on how to do it. Any help would be appreciated! I attached
Hello, I need help to do the following C++ program. I am confused on how to do it. Any help would be appreciated! I attached the following code needed for the assignment.




In this exercise, you will implement two different functions that reverse the order of items in a list of strings. (1) A non-member function named reverse that creates a copy of a list that contains the items in reverse order. Since this is a non-member function, you can only use the public interface of the List class, which includes an iterator. (2) A member function named reverselnPlace that alters the linked list in place. It does NOT create a new copy. Your code should not create or delete any list nodes. Since this is a member function, you have access to all private member variables and classes. The main function will not be graded. It is there only to help you exercise and test the code while you are developing it. Only unit tests will be used for grading your submission
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
