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

剑指09跳台阶

时间:2020-07-22 11:17:25      阅读:62      评论:0      收藏:0      [点我收藏+]

标签:public   lse   bsp   多少   turn   describe   floor   get   不同的   

题目描述

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

public class Solution {
    public int JumpFloor(int target) {
      
        if (target<=0){
            return -1;
        }
        else if (target ==1){
            return 1;
            
        }else if (target==2){
            return 2;
        }else {
            return JumpFloor(target-1)+JumpFloor(target-2);
        }
    }
}

剑指09跳台阶

标签:public   lse   bsp   多少   turn   describe   floor   get   不同的   

原文地址:https://www.cnblogs.com/hrnn/p/13359069.html

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