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

跳台阶

时间:2016-06-11 21:26:03      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:

题目描述

一只青蛙一次可以跳上1级台阶,也可以跳上2级。求该青蛙跳上一个n级的台阶总共有多少种跳法。

 

public class Solution {
    
    // 递归 类似斐波那契数列
    /*
    public int JumpFloor(int target) {
        if(target<=1){
            return 1;
        }
        if(target == 2){
            return 2;
        }
        return JumpFloor(target-2)+JumpFloor(target-1);
    }
    */
    
    // 动态规划
    public int JumpFloor(int target){
        if(target<=1){
            return 1;
        }
        
        int last=1;
        int lastLast=1;
        int now=0;
        
        for(int i=2; i<=target; i++){
            now = last + lastLast;
            lastLast = last;
            last = now;
        }
        return now;
    }
}

 

跳台阶

标签:

原文地址:http://www.cnblogs.com/hesier/p/5575840.html

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