首页 > 代码库 > 10、剑指offer--矩形覆盖
10、剑指offer--矩形覆盖
题目描述
我们可以用2*1的小矩形横着或者竖着去覆盖更大的矩形。请问用n个2*1的小矩形无重叠地覆盖一个2*n的大矩形,总共有多少种方法?
解题思路:得到f(n)=f(n-1)+f(n-2)
1 #include <iostream> 2 using namespace std; 3 class Solution { 4 public: 5 //fn=f(n-1)+f(n-2) 6 int rectCover(int number) { 7 int result[3]={0,1,2}; 8 if(number<=2) 9 return result[number]; 10 int f1 = 1; 11 int f2 = 2; 12 int fn = 0; 13 for(int i=3;i<=number;i++) 14 { 15 fn = f1 + f2; 16 f1 = f2; 17 f2 = fn; 18 } 19 return fn; 20 } 21 }; 22 int main() 23 { 24 int n; 25 while(cin>>n) 26 { 27 Solution s; 28 cout<<"1*2小矩形放入2*"<<n<<"大矩形中有"<<s.rectCover(n)<<"种放法"<<endl; 29 } 30 return 0; 31 }
输出结果
10、剑指offer--矩形覆盖
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。