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

10_____矩形覆盖

时间:2019-09-02 23:50:22      阅读:89      评论:0      收藏:0      [点我收藏+]

标签:for   tar   nbsp   solution   str   斐波那契数   矩形覆盖   ++   pre   

题目描述:

我们可以用2*1的小矩形横着或者竖着去覆盖更大的矩形。请问用n个2*1的小矩形无重叠地覆盖一个2*n的大矩形,总共有多少种方法?

public class Solution {
//类似于斐波那契数列的规律
//f(n)=f(n-1)+f(n-2);
    public int RectCover(int target) {
        if(target==1){
            return 1;
        }
        
        if(target==2){
            return 2;
        }
        
        int prepreNum=1;
        int preNum=2;
        int res=0;
        for(int i=3;i<=target;i++){
            res=prepreNum+preNum;
            prepreNum=preNum;
            preNum=res;
        }
        return res;
    }
}

 

10_____矩形覆盖

标签:for   tar   nbsp   solution   str   斐波那契数   矩形覆盖   ++   pre   

原文地址:https://www.cnblogs.com/xbfchder/p/11450399.html

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