首页 > 其他 > 详细

[LeetCode]70 Climbing Stairs

时间:2015-01-04 19:43:03      阅读:323      评论:0      收藏:0      [点我收藏+]

https://oj.leetcode.com/problems/climbing-stairs/

http://blog.csdn.net/linhuanmars/article/details/23976963

public class Solution {
    public int climbStairs(int n) 
    {    
        // A recursive solution
        // if (n == 1 || n == 2)
        // {
        //    return 1;
        // }
        // return climbStairs(n - 1) + climbStairs(n - 2);
         
        int[] solutions = new int[Math.max(n, 2)];
        solutions[0] = 1;
        solutions[1] = 2;
        for (int i = 2 ; i < solutions.length ; i ++)
        {
            solutions[i] = solutions[i - 1] + solutions[i - 2];
        }
        return solutions[n - 1];
    }
}


[LeetCode]70 Climbing Stairs

原文:http://7371901.blog.51cto.com/7361901/1598899

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!