Question: Consider the function f defined below. For a given linked list p, the function f returns 1 if and only if (GATE CS 2003) A.

Consider the function f defined below.

struct item { int data; struct item next; * }; int f

For a given linked list p, the function f returns 1 if and only if (GATE CS 2003)

A. the list is empty or has exactly one element 

B. the elements in the list are sorted in non-decreasing order of data value 

C. the elements in the list are sorted in non-increasing order of data value 

D. not all elements in the list have the same data value.

struct item { int data; struct item next; * }; int f (struct item *p) { return ( (p = NULL) || (p->next = NULL) || (( P->data next->data) && f (p->next)) );

Step by Step Solution

3.37 Rating (150 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

B Explanation The function f works as follows 1 If linked l... View full answer

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 Data Structures and Other Objects Using Java Questions!