欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

LeetCode 118. Pascal's Triangle

程序员文章站 2022-04-01 11:30:29
...

Problem

原题链接

Notes

给定层数n,输出n层的杨辉三角形。简单的模拟。

Codes

class Solution {
public:
    vector<vector<int>> generate(int numRows) {
        vector<vector<int> > ans;
        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(ans[i-1][j]+ans[i-1][j-1]);
            }
            ans.push_back(temp);
        }
        return ans;
    }
};

Results

LeetCode 118. Pascal's Triangle

相关标签: LeetCode 算法