10 矩形覆盖

Posted zqlucky

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了10 矩形覆盖相关的知识,希望对你有一定的参考价值。

题目描述

我们可以用2*1的小矩形横着或者竖着去覆盖更大的矩形。请问用n个2*1的小矩形无重叠地覆盖一个2*n的大矩形,总共有多少种方法?
注意n==0的时候有0中方法。
 
class Solution {
public:
    int rectCover(int number) {
        if(number == 0){
            return 0;
        }
        if(number == 1){
            return 1;
        } 
        if(number == 2){
            return 2;
        }
        int a = 1,b = 2,c = 0;
        while((number--) > 2){
            c = a + b;
            a = b;
            b = c;
        }
        return c;
    }
};

 

以上是关于10 矩形覆盖的主要内容,如果未能解决你的问题,请参考以下文章

丑陋的片段过渡到带有覆盖的surfaceview

10.矩形覆盖

《剑指offer》10-12题

10 矩形覆盖

剑指offer[10]——矩形覆盖

剑指offer(10)矩形覆盖