题目:
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) {
for( int i = 0 ; i < n ; i++)
{
tmp = curz;
cur += prev;
prev = tmp;//实现f(n)=f(n-1)+f(n-2)
}
return cur;
}
private:
int tmp;
int prev = 0;
int cur = 1;
};
总结:
和朋友长时间讨论这道题,他最先的思路是使用递归二叉树深度搜索来做,思路是对的但是runtime超了。后来我和他一起研究了答案。在答案认为这是一个斐波那契函数。满足f(n)=f(n-1)+f(n-2)。使用几个事例来验证和仔细思考下是可以知道这个结论的,我简述思路。爬到n层有两种可能,第一种从n-1阶爬到,第二种从n-2阶爬到,这两种为独立事件,所以事件能够直接相加。上面代码就是按照斐波那契函数做的,使用的方式是迭代。