Question
Given numRows, generate the first numRows of Pascal’s triangle.
For example, given numRows = 5,
Return
本题难度Easy。
【复杂度】
时间 O(N^2) 空间 O(N)
【思路】
本题就是求杨辉三角。除了第一行单独生成以外,其他的都是按照上一行生成本行的元素(除了第一个和最后一个都是1,单独加入)。
【代码】
Question
Given numRows, generate the first numRows of Pascal’s triangle.
For example, given numRows = 5,
Return
本题难度Easy。
【复杂度】
时间 O(N^2) 空间 O(N)
【思路】
本题就是求杨辉三角。除了第一行单独生成以外,其他的都是按照上一行生成本行的元素(除了第一个和最后一个都是1,单独加入)。
【代码】
【LeetCode】39. 组合总和
【LeetCode】705. 设计哈希集合
【LeetCode】706. 设计哈希映射
举报文章
请选择举报类型
补充说明
0/200
上传截图
格式支持JPEG/PNG/JPG,图片不超过1.9M