Open In App
Related Articles

GATE | GATE CS Mock 2018 | Question 57

Improve Article
Improve
Save Article
Save
Like Article
Like

Given A, an array of size n, comprised of an increasing sequence of numbers followed immediately by a decreasing one. What is worst case time complexity of optimal algorithm to determine if a given number x is in the array?
(A) Θ(log n)
(B) Θ(n)
(C) Θ(n^2)
(D) Θ(log n)^2


Answer: (A)

Explanation: This is an application of Binary search, which has time complexity Θ(log n) in worst case.
Option (A) is correct.

Quiz of this Question

Last Updated : 03 Jan, 2018
Like Article
Save Article
Similar Reads