Page 1 of 1

What is the time complexity of the following for loop method used to compute the nth fibonacci term?

Posted: Wed Jul 13, 2022 7:40 pm
by answerhappygod
int fibo(int n)
if n == 0
return 0
else
prevFib = 0
curFib = 1
for i : 1 to n-1
nextFib = prevFib + curFib
prevFib = curFib
curFib = nextFib
return curFib
a) O(1)
b) O(n)
c) O(n2)
d) Exponential