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

剑指offer---变态跳台阶

时间:2020-04-14 22:24:00      阅读:74      评论:0      收藏:0      [点我收藏+]

标签:一个   col   --   desc   public   offer   code   targe   solution   

题目描述

一只青蛙一次可以跳上1级台阶,也可以跳上2级……它也可以跳上n级。求该青蛙跳上一个n级的台阶总共有多少种跳法。
public class Solution {
    public int JumpFloorII(int target) {
        if(target<=0)
            return 0;
        if(target==1)
            return 1;
        return JumpFloorII(target-1)*2;
    }
}

 

剑指offer---变态跳台阶

标签:一个   col   --   desc   public   offer   code   targe   solution   

原文地址:https://www.cnblogs.com/goodtest2018/p/12701623.html

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