首页 > 编程 > C# > 正文

基于使用递归推算指定位数的斐波那契数列值的解决方法

2020-01-24 03:23:36
字体:
来源:转载
供稿:网友
昨天面试遇到这样的一道题目:1,1,2,3,5,8,13,21...,请问第30位的值是多少?

代码实现如下:
复制代码 代码如下:

//1,1,2,3,5,8,13,21.......第30个是多少?
     //使用递归计算指定位数的斐波那契数列值
     //Fn=F(n-1)+F(n-2)
     public static int GetFibonacciNumber(int index)
     {
         if(index<0||index==0)throw new Exception("参数不能小于或等于0");
         if(index<=2)
         {
             return 1;
         }
         else
         {
             return GetFibonacciNumber(index-1)+GetFibonacciNumber(index-2);
         }
     }
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表