Question: DATA STRUCTURE 3 questions -given the following classes- public class Node { public char data; public Node next; public Node(char d, Node n) { data

DATA STRUCTURE 3 questions

-given the following classes-

public class Node { public char data; public Node next; public Node(char d, Node n) { data = d; next = n; } } public class SLinkedList { public Node head; public Node tail; int size;

public SLinkedList() { head = tail = null; size=0; } public void addFirst(int newData){ if (size ==0){ head = tail= new Node(newData, head); size++;} else head = tail= new Node(newData, head); size++;} } public void add(int newData){ if (size ==0){ head = tail= new Node(newData, head); size++;} else tail.next = new Node(newData, null); tail=tail.next size++;} }

What is the output of the following code?

public class Demo {

public static void main(String[] args) {

SLinkedList list = new SLinkedList();

list.addFirst(a);

list. addFirst (b);

list. add (c);

list. add (d);

list. addFirst (e);

Node temp=list.head;

for (int i = 0; i < list.size; i++) {

System.out.print(temp.data + " ");

temp=temp.next;

}

b. write the method length which calculates the number of elements in the list. input none output none

c. write the method remove which removes the last element from the list. input none output none

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!