题目内容

f(n)=f(n-1)+2是一个递归体。

A. 对
B. 错

查看答案
更多问题

在解决问题时,应该尽量避免使用递归,除非没有更好的算法或者某种特定情况,递归更为适合的时候。

A. 对
B. 错

任何问题都可以使用递归算法解决。

A. 对
B. 错

int F(int n){if(n==0)return 1;return n*F(n-1);}是一个递归函数。

A. 对
B. 错

In the United States, the managers carry a high status and they are cultural hero.

A. 对
B. 错

答案查题题库