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
head node;
else
Node temp, cur;
for cur head; temp cur.getNextnull; cur temp;
cur.setNextnode;
size;
Question 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
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
