-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.h
More file actions
60 lines (36 loc) · 1.03 KB
/
Package.h
File metadata and controls
60 lines (36 loc) · 1.03 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
//
// Created by Administrator on 2022/5/8.
//
#ifndef PACKAGE_H
#define PACKAGE_H
#include <vector>
class Package {
public:
// 背包问题 汇总
static void pack01();
static void pack02();
static void pack03();
static void pack_416();
static void pack322();
static void pack_494();
static void pack_198();
static void pack_139();
static void pack_476();
static void pack_518();
static void pack_279();
static void pack_1049();
static void longestCommntSub();
// 63. 不同路径 II
static void uniquePathsWithObstacles();
static void jump();
// 343. 整数拆分
static void integerBreak();
// 96. 不同的二叉搜索树 numTrees
static void numTrees();
// 474. 一和零
static void findMaxForm();
static std::vector<int> getVector(const std::array<int, 5> &nums);
static std::vector<int> getVector3(const std::vector<int> &nums);
static std::vector<int> getVector4(const std::vector<int> &nums);
};
#endif // PACKAGE_H