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

leetcode119 C++ 0ms 杨辉三角2

时间:2018-08-05 00:32:37      阅读:248      评论:0      收藏:0      [点我收藏+]

标签:int   leetcode   for   dex   win   tco   row   OWIN   cto   

class Solution {
public:
    vector<int> getRow(int rowIndex) {
        rowIndex++;
        if(rowIndex<=0){
            return {};
        }
        else if(rowIndex==1){
            return {1};
        }
        vector<int> res(rowIndex, 0);
        res[0] = 1;
        vector<int> curr = res;
        for(int i=1;i<rowIndex+1;i++){
            for( int j=1;j<i;j++){
                res[j] = curr[j-1] + curr[j];
            }
            curr = res;
        }
        return res;

    }
};


leetcode119 C++ 0ms 杨辉三角2

标签:int   leetcode   for   dex   win   tco   row   OWIN   cto   

原文地址:https://www.cnblogs.com/theodoric008/p/9420597.html

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