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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!