Question: For a non-empty linked list, select the code that should appear in a function that adds a node to the end of the list. newPtr

For a non-empty linked list, select the code that should appear in a function that adds a node to the end of the list. newPtr is a pointer to the new node to be added, and lastPtr is a pointer to the current last node. Each node contains a pointer nextPtr, a link to a node.

Question 25 options:

A) lastPtr->nextPtr = newPtr;lastPtr = newPtr;

B) (b) lastPtr = newPtr;lastPtr->nextPtr = newPtr;

C) (c) newPtr->nextPtr = lastPtr;lastPtr = newPtr;

D) (d) lastPtr = newPtr;newPtr->nextPtr = lastPtr;

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!