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

LeetCode: Pascal's Triangle [118]

时间:2014-06-08 09:17:06      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:leetcode   算法   面试   

【题目】

Given numRows, generate the first numRows of Pascal‘s triangle.

For example, given numRows = 5,
Return

[
     [1],
    [1,1],
   [1,2,1],
  [1,3,3,1],
 [1,4,6,4,1]
]


【题意】

给定整数numRows, 要求生成杨辉三角的前numRows行


【思路】


    杨辉三角有以下特点:
    1. 第n行有n个元素
    2. 每行的收尾都是1, 其余元素A[n][i]=A[n-1][i-1]+A[n-1][i]


【代码】

class Solution {
public:
    vector<vector<int> > generate(int numRows) {
        vector<vector<int> >result;
        if(numRows<=0)return result;
        
        for(int row=1; row<=numRows; row++){
            vector<int> vals(row, 1);
            for(int i=1; i<row-1; i++){
                vals[i]=result[row-2][i-1] + result[row-2][i];
            }
            result.push_back(vals);
        }
        return result;
    }
};


LeetCode: Pascal's Triangle [118],布布扣,bubuko.com

LeetCode: Pascal's Triangle [118]

标签:leetcode   算法   面试   

原文地址:http://blog.csdn.net/harryhuang1990/article/details/28849855

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