-
Notifications
You must be signed in to change notification settings - Fork 0
/
subsets.cpp
67 lines (58 loc) · 1.38 KB
/
subsets.cpp
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
61
62
63
64
65
66
67
/* https://leetcode.com/problems/subsets/
Given a set of distinct integers, nums, return all possible subsets.
Note:
Elements in a subset must be in non-descending order.
The solution set must not contain duplicate subsets.
For example,
If nums = [1,2,3], a solution is:
[
[3],
[1],
[2],
[1,2,3],
[1,3],
[2,3],
[1,2],
[]
]
*/
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
class Solution {
public:
vector<vector<int>> res;
vector<int> vi;
vector<vector<int>> subsets(vector<int>& nums) {
auto size = nums.size();
sort(nums.begin(), nums.end()); // notes: the input nums are not sorted.
for(int i=0; i<=size; i++)
backtracker(nums, i, -1);
return res;
}
void backtracker(vector<int>& num, int k, int maxindex){
// maxindex: the index of maximum value in current vi.
if(vi.size() == k){
res.push_back(vi);
return;
}
auto numsize = num.size();
for(int i= maxindex + 1; i<numsize; i++){
vi.push_back(num[i]);
backtracker(num, k, i);
vi.pop_back();
}
}
};
int main(){
Solution s;
vector<int> nums{1,2,3};
auto res = s.subsets(nums);
for(auto it: res){
for(auto it2: it)
cout << it2 << " ";
cout << endl;
}
return 0;
}