首页 > 学院 > 开发设计 > 正文

重拾算法之剑指Offier——矩形覆盖

2019-11-09 20:11:32
字体:
来源:转载
供稿:网友

剑指Offier——矩形覆盖(依旧是斐波那契数列)

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

public class Solution { public int RectCover(int target) { if(target < 3){ return target; } return RectCover(target-1) + RectCover(target-2); }}
上一篇:virtualenv和它的原理

下一篇:矩形着色

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表