码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode:Climbing Stairs

时间:2015-04-03 22:34:50      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:leetcode   c++   动态规划   

class Solution {
public:
    int climbStairs(int n) {
        vector<int> table;
        table.push_back(0);
        table.push_back(1);
        table.push_back(2);
        if(n<=2)
            return table[n];
        for(int i=3;i<=n;i++)
        {
            table.push_back(table[i-1]+table[i-2]);
        }
        return table[n];
    }
};

leetcode:Climbing Stairs

标签:leetcode   c++   动态规划   

原文地址:http://blog.csdn.net/majing19921103/article/details/44859939

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