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?
Note: Given n will be a positive integer.
排列组合问题,可用递归求解;但递归会消耗系统栈空间,在leetcode上提交的时候 在n=44的这个case时,内存会爆。所以还需要对尾递归优化,用循环代替~
1 | class Solution { |
优化后:
1 | class Solution { |