考虑以下函数
Function F (n, m: integer): integer;
begin
If (n<=0) or (m<=0) then F:=1
else
F:= F(n-1,m) + F(n, m-1);
end;
用递推关系回答下列问题。
假设n、m是正整数。只写答案,不作任何解释。
一种。 F(n,2) 的值是多少?
湾(n,m) 的值是多少?
C。在评估 F(n,m) 时,对函数F 进行了多少次递归调用,包括原始调用。回答:
解释:
这个问题的测验