Vidyalelo
Data Structure · Q109

Introduction to Data Structures

Programming · Data Structure · question 109

Q109

Given the Node class implementation, select one of the following that correctly inserts a node at the tail of the list. public class Node protected int data; protected Node prev; protected Node next; public Node(int data) this.data = data; prev = null; next = null; public Node(int data, Node prev, Node next) this.data = data; this.prev = prev; this.next = next; public int getData() return data; public void setData(int data) this.data = data; public Node getPrev() return prev; public void setPrev(Node prev) this.prev = prev; public Node getNext return next; public void setNext(Node next) this.next = next; public class DLL protected Node head; protected Node tail; int length; public DLL() head = new Node(Integer.MIN_VALUE,null,null); tail = new Node(Integer.MIN_VALUE,null,null); head.setNext(tail); length = 0;

Options are not available for this question.

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board