1
public static int f(int a){
        if(a==0) return 0;
        if(a==1) return 1;
        return (f(a-1) + f(a-2));
}

有没有这样做的非递归方式?

4

0 回答 0