Question: PLEASE CONSTRUCT A .h CLASS FOR A DOUBLY LINKED LIST WITH THE COMPONENTS PROVIDED IN THE UML BELOW. THIS CLASS MUST BE ABLE TO TEST
PLEASE CONSTRUCT A .h CLASS FOR A DOUBLY LINKED LIST WITH THE COMPONENTS PROVIDED IN THE UML BELOW.
THIS CLASS MUST BE ABLE TO TEST THE ATTACHED TEST .cpp (added at the bottom)

Description of what each component should do:

Test .cpp:
#include "Doubly.h" #includeusing namespace std; int main() { Doubly d; d.insert('M'); d.insert('B'); d.insert('Y'); Doubly e(d); e.print(); d.print(); d.reverse(); cout
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
