Question: Using Java implement and a doubly link list, with the following requirements. You MUST to implement the following requirements to your doubly link list Class
Using Java implement and a doubly link list, with the following requirements.



You MUST to implement the following requirements to your doubly link list Class Node o int value o Node next, prev Holds the next and previous nodes in the list. Class Link List o Node head Holds the node at the front of the list o Node tail Holds the node at the end of the list o int size() returns a number nodes in the list o void print() prints all the values of all the nodes in the list o void AddToFront (Node n) adds a node 'n' to the front of the list
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
