Question
#include<stdio.h>
int max_of_two(int a, int b)
{
if(a > b)
return a;
return b;
}
int min_of_two(int a, int b)
{
if(a < b)
return a;
return b;
}
int recursive_max_element(int *arr, int len, int idx)
{
if(idx == len - 1)
return arr[idx];
return max_of_two(arr[idx], recursive_max_element(arr, len, idx + 1));
}
int recursive_min_element(int *arr, int len, int idx)
{
if(idx == len - 1)
return arr[idx];
return min_of_two(arr[idx], recursive_min_element(arr, len, idx + 1));
}
int main()
{
int n = 5, idx = 0, arr[] = {1,1,1,1,1};
int max_element = recursive_max_element(arr,n,idx);
int min_element = recursive_min_element(arr,n,idx);
printf("%d %d",max_element,min_element);
return 0;
}
a.
1 1
b.
0 0
c.
compile time error
d.
runtime error
Posted under Data Structures and Algorithms
Engage with the Community - Add Your Comment
Confused About the Answer? Ask for Details Here.
Know the Explanation? Add it Here.
Q. What is the output of the following code?
Similar Questions
Discover Related MCQs
Q. Which of the following methods can be used to find the largest and smallest number in a linked list?
View solution
Q. What is the time complexity of the above iterative code used to find the smallest and largest element in a linked list?
View solution
Q. What is the time complexity of the recursive implementation used to find the largest and smallest element in a linked list?
View solution
Q. Which of the following techniques can be used to search an element in an unsorted array?
View solution
Q. Consider the array {1,1,1,1,1}:
Which of the following techniques can be used to search an element in the above array?
View solution
Q. What is the time complexity of the above recursive implementation of linear search?
View solution
Q. Which of the following methods can be used to search an element in a linked list?
View solution
Q. What is the time complexity of the above implementation of linear search on a linked list?
View solution
Q. Can binary search be applied on a sorted linked list in O(Logn) time?
View solution
Q. What will be time complexity when binary search is applied on a linked list?
View solution
Suggested Topics
Are you eager to expand your knowledge beyond Data Structures and Algorithms? We've curated a selection of related categories that you might find intriguing.
Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!