题解 | #跳台阶#

跳台阶

http://www.nowcoder.com/practice/8c82a5b80378478f9484d87d1c5f12a4

一只青蛙一次可以跳上1级台阶,也可以跳上2级。求该青蛙跳上一个n级的台阶总共有多少种跳法(先后次序不同算不同的结果)。

方法一(递归):

public class Solution {
    public int jumpFloor(int target) {
        if(target==1||target==2){
            return target;
        }
        return jumpFloor(target-1)+jumpFloor(target-2);

    }
}

方法二(迭代):

public class Solution {
    public int jumpFloor(int target) {
        int a=1,b=2,i=3;
        while(i<=target){
            a=a+b;
            b=a+b;
            i+=2;
        }
        return (i==target+2)?a:b;
        }
}
全部评论

相关推荐

耀孝女:就是你排序挂了
点赞 评论 收藏
分享
object3:开始给部分🌸孝子上人生第一课了
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务