118. 杨辉三角

题目描述

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]
]

代码实现

观察规律,谋定而后动

class Solution {
public:
    vector<vector<int> > generate(int numRows) {

        vector<vector<int> > ret;
        for(int i=0;i<numRows;i++)
        {
            vector<int> temp;
            for(int j=0;j<=i;j++)
            {
                if(j==0 || j==i)
                    temp.push_back(1);
                else 
                    temp.push_back(ret[i-1][j-1]+ret[i-1][j]);
            }
            ret.push_back(temp);
        }
        return ret;
    }
};

posted on 2021-04-03 10:35  朴素贝叶斯  阅读(26)  评论(0编辑  收藏  举报

导航