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

斐波那契递归和非递归俩种算法实例

时间:2016-03-02 13:17:18      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:

package testcase;
/**
 * 
 * @decription
    \     \\_
  .---(‘)
o( )_-\_ 斐波那契递归和非递归俩种算法实例
 * @author bjliuzezhou
 * @date 2016年2月23日
 */
public class TypicalArithmetic_01 {
    
    public static void main(String[] args) {
        System.out.println(fn(6));
        System.out.println(noRecursion(6));
    }
    
    public static int fn(int n){
        if(n==0 | n==1)
            return 1;
        else
            return fn(n-1) + fn(n-2);
        
    }
    
    public static int noRecursion(int n){
        
        if(n==0 | n==1)
            return 1;
        else{
            int first = 1;
            int second = 1;
            int total = 0;
            for(int i=2; i<=n; i++){
                
                total = first + second;
                first = second;
                second = total;
            }
            
            return total;
        }
        
        
    }
}

 

斐波那契递归和非递归俩种算法实例

标签:

原文地址:http://www.cnblogs.com/cangqiongbingchen/p/5234141.html

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