Loading practice questions
What is the time complexity of Fibonacci Search?
Correct Answer: A — O(logn)
Explanation:
Since it divides the array into two parts, although not equal, its time complexity is O(logn), it is better than binary search in case of large arrays.