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

变态跳台阶(递归循环)

时间:2015-12-29 12:35:28      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:

因为n级台阶,第一步有n种跳法:跳1级、跳2级、到跳n级
跳1级,剩下n-1级,则剩下跳法是f(n-1)
跳2级,剩下n-2级,则剩下跳法是f(n-2)
所以f(n)=f(n-1)+f(n-2)+...+f(1)
因为f(n-1)=f(n-2)+f(n-3)+...+f(1)
所以f(n)=2*f(n-1)

 

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

变态跳台阶(递归循环)

标签:

原文地址:http://www.cnblogs.com/bb3q/p/5085210.html

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