码迷,mamicode.com
首页 > 其他好文 > 详细

青蛙跳台阶

时间:2017-09-23 14:26:55      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:generate   stat   generated   auto   style   eth   div   class   青蛙跳   

package suanfati;
/*
 * 青蛙跳台阶算法
 * 每次可以跳1级或两级,请问有n级台阶,有多少种算法
 * 递归算法
 */
public class FrogJump {
    public static int JumpFloor(int n) {
        if(n<0)
            return 0;
        int []fibArry = {0,1,2};
        if(n<3)
            return fibArry[n];
        return JumpFloor(n-1)+JumpFloor(n-2);
    }
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        System.out.println(JumpFloor(5));//8
    }

}

 

青蛙跳台阶

标签:generate   stat   generated   auto   style   eth   div   class   青蛙跳   

原文地址:http://www.cnblogs.com/liuzhenping/p/7580903.html

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