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

跳台阶

时间:2019-11-22 13:24:07      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:pack   inline   ack   方式   round   key   port   display   ams   

跳台阶

题目:一只青蛙一次可以跳上1级台阶,也可以跳上2级。求该青蛙跳上一个n级的台阶总共有多少种跳法

package sort;

import java.util.Scanner;

/**
 * @author WangXiaoeZhe
 * @Date: Created in 2019/11/22 12:43
 * @description:
 */

public class TaiJieSort {
    public static void main(String[] args{
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        System.out.println(f(n));
    }

    /**
     * 递归方式
     */

    private static int jumpFloor(int n{
        if (n <= 1) {
            return 0;
        }
        if (n <= 2) {
            return n;
        }
        return jumpFloor(n - 1) + jumpFloor(n - 2);
    }

    /**
     * 动态规划
     */

    public static int f(int n{
        if (n <= 0) {
            return 0;
        }
        int f = 1;
        int g = 1;
        while (n-- > 0) {
            g = g + f;
            f = g - f;
        }
        return f;
    }

    /**
     * 变态跳台阶问题(可以跳任何阶)
     */

    public static int F(int n{
        if (n < 0) {
            return 0;
        }
        if (n == 1) {
            return 1;
        }
        int f = 1;
        for (int i = 0; i <= n; i++) {
            f = 2 * f;
        }
        return f;
    }

}

跳台阶

标签:pack   inline   ack   方式   round   key   port   display   ams   

原文地址:https://www.cnblogs.com/wuhen8866/p/11910944.html

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