码迷,mamicode.com
首页 > 编程语言 > 详细

斐波那契数列算法

时间:2015-04-07 21:28:47      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:

  斐波那契数列具有一个通式:

当n>2时,f(n)=f(n-1)+f(n-2);当n=1或n=2时,f(1)=f(2)=1.

代码实现:

package com.lk.C;

public class Test4 {
    public static int compute(int index){
        if((index == 1)||(index == 2)){
            return 1;
        }else{
            return compute(index-1)+compute(index-2);
        }
    }
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        System.out.println(compute(20));
    }

}
6765

 

斐波那契数列算法

标签:

原文地址:http://www.cnblogs.com/luankun0214/p/4399591.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!