Question: Consider the following code: // Linked Lists: locate the LAST node in a list struct ListNode { int data; struct ListNode *next; }; Assume that
Consider the following code: // Linked Lists: locate the LAST node in a list
struct ListNode { int data; struct ListNode *next; };
Assume that a linked list has been created and head points to the first node. You may also assume that the list is not empty. Write a function named getLast that is passed the pointer to the first node in this linked list and returns the data in the last node.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
