第20708题 判断
给定递归实现的斐波那契函数(fib(0)=0,fib(1)=1),判断其时间复杂度是否为O(n)
int fib(int n) {
    if (n <= 1) return n;
    return fib(n-1) + fib(n-2);
}
A

正确

B

错误