首页 > 代码库 > leetcode 70. Climbing Stairs
leetcode 70. Climbing Stairs
leetcode 70. Climbing Stairs
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.
本题考虑动态规划,每一阶台阶只能从它的前一个台阶来或者从前两个台阶来,那么只需知道前一个台阶和前两个台阶能有几种走法就ok了,
第一个台阶是1中,第二个台阶是两种,注意只有一个台阶的特殊情况
public class Solution { public int climbStairs(int n) { int [] path=new int [n]; if(n==1){ return 1; } path[0]=1; path[1]=2; for (int i=2;i<n;i++){ if (i-2>=0){ path[i]+=path[i-2]; } if (i-1>=0){ path[i]+=path[i-1]; } } return path[n-1]; } }
leetcode 70. Climbing Stairs
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。