Question: What is the functionality of the following code? public void function ( Node node ) { if ( size = = 0 ) head =

What is the functionality of the following code?
public void function (Node node)
{
if (size ==0)
head = node;
else
{
Node temp, cur;
for (cur = head; (temp = cur.getNext())!=null; cur = temp);
cur.setNext(node);
}
size++;
}
Question 5 options:
Inserting a node at the beginning of the list
Deleting a node at the beginning of the list
Inserting a node at the end of the list
Deleting a node at the end of the list

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!