Question: Q) Write a method that create a linked list from a double linked list using the methods available in MyDoubleLinkedList and java.util.LinkedList. ################ MyDoubleLinkedList Class
Q) Write a method that create a linked list from a double linked list using the methods available in MyDoubleLinkedList and java.util.LinkedList.
################ MyDoubleLinkedList Class ###############
public class MyDoubleLinkedList { private DoubleNode head = null; private DoubleNode tail = null;
public DoubleNode getHead() { return head; }
public void setHead(DoubleNode head) { this.head = head; }
public DoubleNode getTail() { return tail; }
public void setTail(DoubleNode tail) { this.tail = tail; } public void insertAtFront(Object obj) { ...................................... } public Object removeAtFront() { ...................................... }
public void print() { ...................................... }
public void printReverse() { ...................................... }
}
########### USING JAVA ###########
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
