Question
C++, can you please answer this by today. Please, I need the actual code together. Thank you in advance 1. DNode class that can store
C++, can you please answer this by today. Please, I need the actual code together. Thank you in advance
1. DNode class that can store integer data and the address of next and prev DNode.
2. Introduce a DLL (Doubly Linked List) class
a. Introduce a front private data member
b. Introduce a DLL constructor and destructor
c. Introduce insertToFront function
d. Introduce deleteFromFront function
e. Introduce printAll function
f. Introduce deleteLast function
g. Introduce insertToMiddle function
h. Introduce deleteMiddle function
i. Introduce deleteLastNode function
j. InsertInOrder function: insert a new node so the list reads in ascending order from the beginning to the end.
k. removeOneTargetNode(int target) //remove the first target node found in the list
l. removeAllTargetNodes(int target)// remove all target node(s) found in the list
m. isDuplicate //return true if there is any node that are duplicate in the list. For example, 1->2->3->4 is a unique SLL. However, 1->2->3->2->1 is duplicate since 1 repeats two times and 2 repeats two times.
3. Introduce a CLL (Doubly Linked List) class and all the above functions.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started