1. 程式人生 > >青蛙跳臺階

青蛙跳臺階

eth -1 ret sys oid 青蛙跳 string sta stat

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 } }

青蛙跳臺階