I need some help in understanding the processing that happens here, so let´s say I call fib(5)
I want the fibonacci 5, which is 8. But my brain in trying to understand the algorithm says it´s not. This is how i (wrongly) think:
return fib(4) + fib(3) // Stack frame 1
return fib(3) + fib(1) // Stack frame 2
now cause x is 1 fib(1)
, the conditional statement if x == 0 or x == 1:
causes the recursion to end. Which according to my logic would become 3+1+4+3. Please correct my faulty logic.
def fib(x):
"""assumes x an int >= 0
returns Fibonacci of x"""
assert type(x) == int and x >= 0
if x == 0 or x == 1:
return 1
else:
return fib(x-1) + fib(x-2)