您的位置:首页 > 大数据 > 人工智能

leetcode: (70) Climbing Stairs

2015-09-18 18:08 459 查看
【Question】

You are climbing a stair case. It takes n steps to reach to the top.

Each time you can either climb 1 or 2 steps. In how many distinct ways can you climb to the top?

可以发现规律nums
=nums[n-1]+nums[n-2];

 可以用递归和非递归,使用递归时复杂度较高

下面给出非递归

class Solution {
public:
int climbStairs(int n) {
if(n==1) return 1;
if(n==2) return 2;
vector<int> vec(n);
vec[0]=1;
vec[1]=2;
for(int i=2;i<n;i++)
{
vec[i]=vec[i-1]+vec[i-2];
}
return vec[n-1];
}
};
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  algorithms leetcode