1 Star 0 Fork 0

丁旭升/cpp代码

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
新建文本文档 (13).txt 778 Bytes
一键复制 编辑 原始数据 按行查看 历史
丁旭升 提交于 2022-08-14 10:10 . vector实现杨辉三角
//杨辉三角
class Solution {
public:
vector<vector<int>> generate(int numRows)
{
//vector<int>数组开空间以及初始化,使用resize
vector<vector<int>> vv;
vv.resize(numRows);
//int的数组,初始化。
for(size_t i=0; i<vv.size(); ++i)
{
vv[i].resize(i+1, 0);
vv[i].front()=vv[i].back()=1;//杨辉三角,第一个和最后一个位置永远是一。
}
//其它位置赋值。
for(size_t i=0; i<vv.size(); ++i)
{
for(size_t j=0; j<vv[i].size(); ++j)
{
if(!vv[i][j])
{
vv[i][j]=vv[i-1][j]+vv[i-1][j-1];
}
}
}
return vv;
}
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/ding-xushengyun/code.git
[email protected]:ding-xushengyun/code.git
ding-xushengyun
code
cpp代码
master

搜索帮助