Question: What is the output after calling the below method if this list contains these elements: 1 0 1 7 5 8 4 4 3 0

What is the output after calling the below method if this list contains these elements:
1017584430
public voidMethod2()
{
if(head==null||head.next==null)
return;
Node temp = head;
Node current = temp.next;
while(current.next != null)
{
temp = current;
current = current.next;
}
head= new Node (current.data,head);
temp.next=null;
}
3010175844
301017584430
4410175830
10175844

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 Programming Questions!