cherrychenlee

导航

 

原文地址:https://www.jianshu.com/p/d5cc26190cb6

时间限制:1秒 空间限制:32768K

题目描述

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

我的代码

class Solution {
public:
    int jumpFloor(int number) {
        if(number<1)
            return 0;
        int g=1,f=0;
        while(number--){
            g+=f;
            f=g-f;
        }
        return g;
    }
};

运行时间:3ms
占用内存:488k

posted on 2019-04-27 22:44  cherrychenlee  阅读(55)  评论(0编辑  收藏  举报