验证回文串 杨辉三角(c++详解)-118. 杨辉三角 - 力扣(LeetCode)

时间:2024-12-15 15:11:20

代码1:

//void resize (size_type n, value_type val = value_type());
//调整容器大小

class Solution {
public:
    vector<vector<int>> generate(int numRows) {
        vector<vector<int>> vv(numRows);
        for (int i = 0; i < numRows; ++i) {
            vv[i].resize(i + 1);
            vv[i][0] = vv[i][i] = 1;
            for (int j = 1; j < i; ++j) {
                //下标等于上面加左上
                vv[i][j] = vv[i - 1][j] + vv[i - 1][j - 1];
            }
        }
        return vv;
    }
};
时间复杂度:O(numRowsD平方)。
空间复杂度:O(1)。