Question: C++ Follow these instructions Write a program to test various operations of the class doublyLinkedList. Must ask user to put a list of numbers and
C++
Follow these instructions
Write a program to test various operations of the class doublyLinkedList. Must ask user to put a list of numbers and give the output of the
following if 1 11 23 32 56 84 89 where inputed
"
List in ascending order: 1 11 23 32 56 84 89
List in descending order: 89 84 56 32 23 11 1
List after deleting 23 : 1 11 32 56 84 89
32 found in the list.
"
If the user puts in 1 2 2 3 12 13 36 51 52 99 132 5 64 984 3694 4894 the output should be exactly this
"
List in ascending order: 1 2 2 3 12 13 36 51 52 99 132 564 984 3694 4894
List in descending order: 4894 3694 984 564 132 99 52 51 36 13 12 3 2 2 1
The item to be deleted is not in the list.
98 is not in the list."
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
