Question: Create a new Java Application to manage Linked Lists: (Note: Do not use java.util.LinkedList) a) Create a new Node class, call it Node2 with Data,
Create a new Java Application to manage Linked Lists: (Note: Do not use java.util.LinkedList)
a) Create a new Node class, call it Node2 with Data, linkForward, and linkBackward
b) Create a new class MyDoublyLinkedList.
1. Do the addToEnd() method
2. Do the addToFront() method
3. Do the displayForward() method
4. Do the displayBackward() method
5. Do the deleteFromFront() method
6. Do the deleteFromBack() method
7. Do the deleteNode() given a specific node data value method
c) Create a Test4 class to test your doubly linked list of Integer objects.
1. Create an object of type MyDoublyLinkedList
2. Add 5 Integer objects to your doubly linked list (add some to the back and some to the front)
3. Display your list by going both forward and backward.
4. Delete the node at the front
5. Delete the node at the back
6. Delete a node with a specific value
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
