Question: This problem deals with the Array and Linked List implementations of the Unsorted List ( AUList and LLUList ). Your solution must begin with the
This problem deals with the Array and Linked List implementations of the Unsorted List (AUList and LLUList). Your solution must begin with the base code available via Blackboard (AUList.h, AUList.cpp, LLUList.h, LLUList.cpp).
a. Create a function for the AUList structure AUList copyReverse() which creates a new AUList with identical elements, but in reverse order. Ex: if myList is an AUList with elements in the order 1, 4, 2, 8, 6, myList.copyReverse() will return an AUList with elements in the order 6, 8, 2, 4, 1.
b. Create the function from part a. but for the LLUList structure (it should return a LLUList with elements in reverse order).
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
