...
Software-testing
April 28, 2024
Question 4464 – Data-Interpretation
April 28, 2024
Software-testing
April 28, 2024
Question 4464 – Data-Interpretation
April 28, 2024

GATE 2006

Question 17

An element in an array X is called a leader if it is greater than all elements to the right of it in X. The best algorithm to find all leaders in an array

A
Solves it in linear time using a left to right pass of the array
B
Solves it in linear time using a right to left pass of the array
C
Solves it using divide and conquer in time θ(nlogn)
D
Solves it in time θ(n2)
Question 17 Explanation: 
Solves it in linear time using a right to left pass of the array will takes time complexity is O(n).
Correct Answer: B
Question 17 Explanation: 
Solves it in linear time using a right to left pass of the array will takes time complexity is O(n).

Leave a Reply

Your email address will not be published. Required fields are marked *