剑指offer矩形覆盖
Posted lettleshel
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指offer矩形覆盖相关的知识,希望对你有一定的参考价值。
题目:我们可以用2*1的小矩形横着或者竖着去覆盖更大的矩形。请问用n个2*1的小矩形无重叠地覆盖一个2*n的大矩形,总共有多少种方法?
思路:类似于斐波那契
class Solution { public: int rectCover(int number) { if (number == 0) return 0; int a = 1; int b = 1; int temp = 0; for (int i = 1; i < number; i++) { temp = b; b = a + b; a = temp; } return b; } };
以上是关于剑指offer矩形覆盖的主要内容,如果未能解决你的问题,请参考以下文章