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

[剑指offer]跳台阶

时间:2019-08-27 17:38:32      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:结果   ==   rank   pid   span   scribe   void   不同的   跳台阶   

题目描述

一只青蛙一次可以跳上1级台阶,也可以跳上2级。求该青蛙跳上一个n级的台阶总共有多少种跳法(先后次序不同算不同的结果)。
 
 
题目链接:
 
package com.sunshine.OFFER66_SECOND;

import org.junit.Test;

public class A8_JumpFloor {

    @Test
    public void test() {
        System.out.println(JumpFloor(4));
        System.out.println(JumpFloor2(4));
    }

    int ans;

    public int JumpFloor(int target) {
        ans = 0;
        jump(target);
        return ans;
    }

    public void jump(int n) {
        if (0 == n) {
            ans++;
            return;
        }
        if (0 > n) {
            return;
        }
        jump(n - 1);
        jump(n - 2);
        return;
    }


    //他人解
    public int JumpFloor2(int target) {
        if (target == 1) {
            return 1;
        } else if (target == 2) {
            return 2;
        }
        return JumpFloor2(target - 1) + JumpFloor2(target - 2);
    }
}

 

[剑指offer]跳台阶

标签:结果   ==   rank   pid   span   scribe   void   不同的   跳台阶   

原文地址:https://www.cnblogs.com/MoonBeautiful/p/11419255.html

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