
Consider the following recursive algorithm for computing Fibonacci numbers: FIBONACCI(n) if n 0 or n 1 return 1 else return FIBONACCI(n-1)+FIBONACCI(n-2) Strictly speaking, what is the size of input? Show transcribed image text
Expert Answer
An answer will be send to you shortly. . . . .