码迷,mamicode.com
首页 > 编程语言 > 详细

Climbing Stairs leetcode java

时间:2014-08-02 12:19:43      阅读:389      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   java   strong   for   问题   ar   

题目

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?

 

题解:

这道题就是经典的讲解最简单的DP问题的问题。。

假设现在在已经爬上来了,你之前那一步是怎么爬的,只有两种选择,1步上来的,或者2步上来的。顺藤摸瓜。写好初始条件。。

dp[i]表示从最底层到梯子顶总共有几种爬法。

所以最后的爬法就是: 你爬到还有一步到终点的爬法 加上 你还有两步到终点的爬法 。(因为这两种方法不会产生更多的爬法,唯一性)。

所以递推公式就可以写为: dp[i] = dp[i-1] + dp[i-2]

 

代码如下:

 1     public int climbStairs(int n) {
 2         if(n==0||n==1||n==2)
 3             return n;
 4         int [] dp = new int[n+1];
 5         dp[0]=0;
 6         dp[1]=1;
 7         dp[2]=2;
 8         
 9         for(int i = 3; i<n+1;i++){
10             dp[i] = dp[i-1]+dp[i-2];
11         }
12         return dp[n];
13     }

 

Climbing Stairs leetcode java,布布扣,bubuko.com

Climbing Stairs leetcode java

标签:style   blog   color   java   strong   for   问题   ar   

原文地址:http://www.cnblogs.com/springfor/p/3886576.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!