-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsubsets.cpp
79 lines (63 loc) · 1.79 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
68
69
70
71
72
73
74
75
76
77
78
79
// {"category": "Array", "notes": "Return all subsets of a set"}
#include <SDKDDKVer.h>
#include <stdio.h>
#include <tchar.h>
#include <iostream>
#include <vector>
#include <Windows.h>
using namespace std;
//------------------------------------------------------------------------------
//
// Write a method to return all subsets of a set.
//
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
//
// Implementation
//
//------------------------------------------------------------------------------
vector<vector<int>> createSubsets(int array[], int size)
{
if (nullptr == array)
{
throw exception();
}
vector<vector<int>> subsets;
for (int index = 0; index < size; index++)
{
if (0 == index)
{
subsets.push_back(vector<int>());
}
int n = subsets.size();
for (int j = 0; j < n; j++)
{
vector<int> a = subsets[j];
a.push_back(array[index]);
subsets.push_back(a);
}
}
return subsets;
}
//------------------------------------------------------------------------------
//
// Demo execution
//
//------------------------------------------------------------------------------
int _tmain(int argc, _TCHAR* argv[])
{
int array[] = { 1, 2, 3, 4, 5 };
vector<vector<int>> subsets = createSubsets(array, ARRAYSIZE(array));
for (vector<int>::size_type i = 0; i < subsets.size(); i++)
{
vector<int> a = subsets[i];
cout << (i > 0 ? " " : "") << "[";
for (vector<int>::size_type j = 0; j < a.size(); j++)
{
cout << (j > 0 ? "," : "") << a[j];
}
cout << "]";
}
cout << endl;
return 0;
}