题目:
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?
分析:此题为斐波那契数列,当前数的值为前两个数值的和。
代码:
class Solution {
public:
int climbStairs(int n) {
if(n<1) return 0;
if(n==1) return 1;
if(n==2) return 2;
int befortwo=1;
int beforone=2;
int ans=0;
for(int i=3; i<=n; i++)
{
ans=befortwo+beforone;
befortwo=beforone;
beforone=ans;
}
return ans;
}
};