Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

//**************************** DLLNode.java ******************************* // node of generic doubly linked list class public class DLLNode { public T info; public DLLNode next, prev; public DLLNode() {

//**************************** DLLNode.java ******************************* // node of generic doubly linked list class

public class DLLNode { public T info; public DLLNode next, prev; public DLLNode() { next = null; prev = null; } public DLLNode(T el) { info = el; next = null; prev = null; } public DLLNode(T el, DLLNode n, DLLNode p) { info = el; next = n; prev = p; } }

//**************************** DLL.java ******************************* // generic doubly linked list class

public class DLL { private DLLNode head, tail; public DLL() { head = tail = null; } public boolean isEmpty() { return head == null; } public void setToNull() { head = tail = null; } public T firstEl() { if (head != null) return head.info; else return null; } public void addToHead(T el) { if (head != null) { head = new DLLNode(el,head,null); head.next.prev = head; } else head = tail = new DLLNode(el); } public void addToTail(T el) { if (tail != null) { tail = new DLLNode(el,null,tail); tail.prev.next = tail; } else head = tail = new DLLNode(el); } public T deleteFromHead() { if (isEmpty()) return null; T el = head.info; if (head == tail) // if only one node on the list; head = tail = null; else { // if more than one node in the list; head = head.next; head.prev = null; } return el; } public T deleteFromTail() { if (isEmpty()) return null; T el = tail.info; if (head == tail) // if only one node on the list; head = tail = null; else { // if more than one node in the list; tail = tail.prev; tail.next = null; } return el; } public void printAll() { for (DLLNode tmp = head; tmp != null; tmp = tmp.next) System.out.print(tmp.info + " "); } public T find(T el) { DLLNode tmp; for (tmp = head; tmp != null && !tmp.info.equals(el); tmp = tmp.next); if (tmp == null) return null; else return tmp.info; } }

public class DLLTest {

public static void main(String[] args) {

DLL test = new DLL();

for(int i = 0; i

test.addToTail("a" + i);

test.printAll();

}

}

image text in transcribed

Question IID) Doubly linked lists (30 pts): Download, compile and execute the programs related to Doubly linked lists. (class DLL) Then add the following methods to the class DLL T.java: (a) public void printReverse () that prints the elements of list in reverse. (b)public void deletelth(i) which deletes the ith element from the list. Note that if you reach the end then you have to reverse the direction of counting. In the main0 method of the test class, create a randomly generated Doubly-Linked list of 10 Integers. Next, call the deletelth(7) method and print the lists iteratively until the list becomes empty. Make sure to print the list after each deletion For example, your list initially could be [3 125 879 0]. After deleting 7th element: [3 125872 0][3 125870] After deleting 7th element again; [3 125870]->[312587] After deleting 7th element again (counting in the same direction, then moving reverse), 3 12587]13 125 7] 3 1257315 7]

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Security XI Status And Prospects

Authors: T.Y. Lin, Shelly Qian

1st Edition

0412820900, 978-0412820908

More Books

Students also viewed these Databases questions

Question

6. Explain the strengths of a dialectical approach.

Answered: 1 week ago

Question

2. Discuss the types of messages that are communicated nonverbally.

Answered: 1 week ago