面试题-10-3-矩形覆盖
Posted moonlightml
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了面试题-10-3-矩形覆盖相关的知识,希望对你有一定的参考价值。
题目描述
我们可以用2*1的小矩形横着或者竖着去覆盖更大的矩形。请问用n个2*1的小矩形无重叠地覆盖一个2*n的大矩形,总共有多少种方法?
思路
递归或者递推,找规律。
代码
public class Solution { public int RectCover(int target) { while(target>0){ if(target==1){ return 1; } if(target==2){ return 2; } else return (RectCover(target-1)+RectCover(target-2)); } return 0; } }
以上是关于面试题-10-3-矩形覆盖的主要内容,如果未能解决你的问题,请参考以下文章
Codeforces Round #587 (Div. 3) C题 判断两个矩形是否完全覆盖一个矩形问题 {补题 [差点上分系列]}