adplus-dvertising
frame-decoration

Question

Consider the following recursive implementation to find the largest element in a linked list:
Which of the following arguments should be passed to the function max_of two() to complete the below code?
struct Node
{
     int val;
     struct Node* next;
}*head;
int max_of_two(int a, int b)
{
      if(a > b)
        return a;
      return b;
}
int recursive_get_max(struct Node* temp)
{
      if(temp->next == 0)
        return  temp->val;
      return max_of_two(______, _______);
}

a.

temp->val,recursive_get_max(temp->next)

b.

temp, temp->next

c.

temp->val, temp->next->val

d.

none of the mentioned

Answer: (a).temp->val,recursive_get_max(temp->next)

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Consider the following recursive implementation to find the largest element in a linked list: Which of the following arguments should be passed to the function max_of two() to...

Similar Questions

Discover Related MCQs

Q. What is the time complexity of the above iterative code used to find the smallest and largest element in a linked list?

Q. Which of the following methods can be used to find the largest and smallest number in a linked list?

Q. What is the time complexity of the above recursive implementation used to find the largest and the smallest element in an array?

Q. What is the time complexity of the above iterative implementation used to find the largest and smallest element in an array?

Q. Which of the following methods can be used to find the largest and smallest element in an array?

Q. What is the time complexity of the above recursive implementation used to find the length of the string?

Q. Which of the following can be the base case for the recursive implementation used to find the length of a string?

Q. Which of the following can be the base case for the recursive implementation used to find the length of linked list?

Q. What is the time complexity of the above iterative implementation used to find the length of a linked list?

Q. What is the space complexity of the recursive implementation used to convert a decimal number to its binary equivalent?

Q. What is the time complexity of the recursive implementation used to convert a decimal number to its binary equivalent?

Q. Which of the following is the binary representation of 100?

Q. What can be the minimum sum of digits for a 4 digit number?

Q. What can be the maximum sum of digits for a 4 digit number?

Q. Which of the following methods can be used to find the sum of digits of a number?

Q. Which of the following methods used to find the sum of first n natural numbers has the least time complexity?

Q. What is the time complexity of the above recursive implementation used to find the sum of the first n natural numbers?

Q. What is the time complexity of the above iterative method used to find the sum of the first n natural numbers?

Q. Which of the following gives the sum of the first n natural numbers?

Q. Which of the following methods can be used to find the sum of first n natural numbers?