带有记忆的菲波那切数列

复制代码
    public static int Fib(int n)
    {
        int q=0;
        int []r=new int[n+1];
        r[0]=1;
        r[1]=1;
        for(int j=2;j<=n;j++)
        {
            r[j]=r[j-1]+r[j-2];
        }
        return r[n];
    }
复制代码

 

posted @   liuhg  阅读(178)  评论(0编辑  收藏  举报
努力加载评论中...
点击右上角即可分享
微信分享提示