Question: Consider the following code: // Linked Lists: SMALLEST struct ListNode { int data; struct ListNode *next; }; Assume that a linked list has been created

Consider the following code: // Linked Lists: SMALLEST

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 getSmallest that is passed the pointer to the first node in this linked list and returns the smallest number in this 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!