博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Pascal's Triangle
阅读量:5885 次
发布时间:2019-06-19

本文共 650 字,大约阅读时间需要 2 分钟。

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

c++代码如下:

#include
#include
using namespace std;class Solution {public: vector
> generate(int numRows) { int i; vector
> vec(numRows); for(i=0;i
getRow(int rowIndex) { if(rowIndex==0) return { 1}; vector
vec1(rowIndex); vector
vec2(rowIndex+1); vec1=getRow(rowIndex-1); vec2[0]=1; for(int i=1;i
>n; vector
> vec=s.generate(n); for(auto v:vec) { for(auto a:v) cout<
<<" "; cout<

运行结果:

 

 

转载地址:http://kslix.baihongyu.com/

你可能感兴趣的文章
1025 选菜
查看>>
Debug 和 Release 编译方式的本质区别
查看>>
结构体
查看>>
Redis学习笔记~把redis放在DATA层,作为一种数据源,我认为更合理,也更符合我的面向对象原则...
查看>>
ztree使用实例
查看>>
idea 使用maven plugin tomcat 运行正常,无法进入debug模式
查看>>
jsfl 添加代码
查看>>
写在前面
查看>>
数据库设计时间字段
查看>>
PHP分页代码中的SQL语句可以换个写法
查看>>
加载样式js
查看>>
数据库之数据排序
查看>>
struts2将数据通过Json格式显示于EasyUI-datagrid数据表格
查看>>
牛客21天刷题_day#3
查看>>
Appium-We wanted {"required":["value"]} and you sent ["text","sessionId","id","value"]
查看>>
Classification Truth Table
查看>>
JVM学习:对象的创建和内存分配
查看>>
JavaScript基础精讲
查看>>
C++ 静态变量 全局变量 const
查看>>
vs 高级保存选项的设置
查看>>