知识点:数据结构 2/10(单选/必答) What is the time...
发布于 2022-03-03 17:30:48
知识点:数据结构 2/10(单选/必答)
What is the time complexity of the following function regarding N?
int fib(int N) {
if (N < 2) {
return 1
}
return fib(N-1) + fib(N-2)
}
What is the time complexity of the following function regarding N?
int fib(int N) {
if (N < 2) {
return 1
}
return fib(N-1) + fib(N-2)
}
登录后免费查看答案
关注者
0
被浏览
29