Question
int min_of_two(int a, int b)
{
if(a < b)
return a;
return b;
}
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 = 10, idx = 0, arr[] = {5,2,6,7,8,9,3,-1,1,10};
int min_element = recursive_min_element(arr,n,idx);
printf("%d",min_element);
return 0;
}
a.
9
b.
10
c.
11
d.
12
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. How many times is the function recursive_min_element() called when the following code is executed?
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!