青蛙跳台阶问题

问题描述:一只青蛙一次可以跳上1级台阶,也可以跳上2级,也可以跳3级。求该青蛙跳上一个n级的台阶总共有多少种跳法,并且打印所有跳跃路径。

Java 代码实现如下:

	private static int total=0;
  
    public static void main(String[] args) {
    	int stairNum = 20;
    	int maxStep = 3;
    	int[] hasJumped = new int[stairNum];
    	jumpStair(hasJumped,0,maxStep,maxStep,stairNum);
    	System.out.println("递归方式统计总次数:"+total);
    	System.out.println(" 斐波那契(Fibonacci)数列逻辑方式统计总次数:"+jumpStairCount(stairNum));
    } 
    
    /**
     * 跳台阶
     * @param hasJumped 已经跳过的台阶路径
     * @param currentStair 当前所在的台阶编号
     * @param jumpStep 跳跃的台阶数
     * @param maxStep 青蛙能跳的最大台阶数 
     * @param stairNum 台阶总数
     */
    public static void jumpStair(int[] hasJumped, int currentStair, int jumpStep, int maxStep,int stairNum){
		if (currentStair > stairNum) {
			return;
		} else if (currentStair >= stairNum) {
			String s = "";
			for (int i = 0; i < hasJumped.length; i++) {
				if (hasJumped[i] > 0) {
					s = s + hasJumped[i] + ",";
				}
			}
			total++;
			System.out.println(s);
			return;
		} else {
			for (int j = maxStep; j >= 1; j--) {
				int newCurrentStair = currentStair + j;
				hasJumped[currentStair] = newCurrentStair;
				for (int i = currentStair + 1; i < hasJumped.length; i++) {
					hasJumped[i] = 0;
				}
				jumpStair(hasJumped, newCurrentStair, j, maxStep, stairNum);
			}
		}
    }

    /**
     * 跳台阶总数统计
     * @param stairNum 台阶总数
     * @return
     */
	public static int jumpStairCount(int stairNum) {
		if (stairNum == 1) {
			return 1;
		}
		else if (stairNum == 2) {
			return 2;
		}
		else if (stairNum == 3) {
			return 4;			
		}
		return jumpStairCount(stairNum - 1) + jumpStairCount(stairNum - 2) + jumpStairCount(stairNum - 3);
	}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值