-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpascals_triangle.h
More file actions
60 lines (54 loc) · 1.45 KB
/
pascals_triangle.h
File metadata and controls
60 lines (54 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
//
// pascals_triangle.h
// array
//
// Created by junlongj on 2019/8/8.
// Copyright © 2019 junl. All rights reserved.
//
#ifndef pascals_triangle_hpp
#define pascals_triangle_hpp
#include <stdio.h>
#include <vector>
/*
118. 杨辉三角
在杨辉三角中,每个数是它左上方和右上方的数的和。
示例:
输入: 5
输出:
[
[1],
[1,1],
[1,2,1],
[1,3,3,1],
[1,4,6,4,1]
]
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/pascals-triangle
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
https://leetcode-cn.com/problems/pascals-triangle/
*/
namespace leetcode {
/*
思路: 下一行的内容是由上一行产生的,所以内存循环遍历上一次的vec就行了
*/
std::vector<std::vector<int>> generate(int numRows) {
if (numRows == 0) return {};
std::vector<std::vector<int>> result;
std::vector<int> lastVec;
result.push_back({1});
for(int i=1;i<numRows;i++){
std::vector<int> vec;
vec.push_back(1);
if (lastVec.size()>=2){
for (int j=0; j+1<lastVec.size();j++){
vec.push_back(lastVec[j]+lastVec[j+1]);
}
}
vec.push_back(1);
lastVec = vec;
result.push_back(vec);
}
return result;
}
}
#endif /* pascals_triangle_hpp */