• 2022-05-28
    假设有递推公式[img=221x28]1803c461186b13b.png[/img],用f n 表示[img=18x17]1803c4612097439.png[/img],下面哪个定义是正确的?
    A: f::Int-Int f0=1 fn=f(n-1)^2+2*f(n-2)
    B: f::Int-Int f0=1 f1=2 fn=(f(n-1))^2+2*f(n-2)
    C: f::Int-Int f0=1 fn=f(n-1)^2+2f(n-2)
    D: f::Int-Int f0=1 f1=2 fn=(f(n-1))^2+2(f(n-2))