-
Notifications
You must be signed in to change notification settings - Fork 215
/
Copy pathpowerset.cpp
104 lines (75 loc) · 3.96 KB
/
powerset.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/*
Write a function that takes in an array of unique integers and returns its powerset.
Sample Input : [1, 2, 3]
Output: [[], [1], [2], [3], [1, 2], [1, 3], [2, 3], [1, 2, 3]]
Explanation:
The code snippet represents a function `Powerset` that takes an array of integers as input and returns the powerset
of the array. The powerset of a set is the set of all possible subsets of that set, including the empty set and the set itself.
The function `Powerset` calls a helper function `powerset` to perform the actual computation. Here's how the code works:
1. The `Powerset` function initializes the computation by calling the `powerset` function with the array and the index
of the last element in the array (`len(array) - 1`).
2. The `powerset` function is a recursive function that calculates the powerset. It takes the array and the current
index as input.
3. At each recursive call, the function checks if the index is less than 0. If so, it means all elements have been
processed, and it returns a 2D slice containing the empty set as the only subset.
4. If the index is not less than 0, the function retrieves the element at the current index from the array.
5. The function recursively calls itself with the array and the index decremented by 1 to generate the subsets without
the current element.
6. It then calculates the length of the subsets generated so far.
7. Using a loop, the function iterates over the existing subsets and creates new subsets by appending the current element
to each subset. The new subsets are added to the existing subset slice.
8. Finally, the function returns the updated subset slice, which contains all the subsets of the original array.
By recursively generating subsets while building upon the subsets generated at each step, the function constructs the
powerset of the given array.
O(n*2^n) time | O(n*2^n) space - where n is the length of the input array
*/
#include <vector>
using namespace std;
vector<vector<int>> powerset(vector<int>& array, int index) {
// Base case: when the index reaches -1, return a vector with an empty subset
if (index < 0) {
return {{}};
}
int element = array[index];
// Recursive call to generate the powerset for the elements up to index - 1
vector<vector<int>> subset = powerset(array, index - 1);
// Length of the current subset vector
int length = subset.size();
// Iterate through each subset and create new subsets by adding the current element
for (int i = 0; i < length; i++) {
vector<int> currentSubset = subset[i];
// Create a new subset by making a copy of the current subset
vector<int> newSubset = currentSubset;
// Add the current element to the new subset
newSubset.push_back(element);
// Add the new subset to the existing subset vector
subset.push_back(newSubset);
}
// Return the resulting subset vector
return subset;
}
vector<vector<int>> Powerset(vector<int>& array) {
// Call the helper function to generate the powerset starting from the last index
return powerset(array, array.size() - 1);
}
// Iterative approach
vector<vector<int>> powerset(vector<int>& array) {
vector<vector<int>> subset;
subset.push_back({}); // Initialize the powerset with the empty subset
// Iterate over each element in the input array
for (int ele : array) {
int length = subset.size(); // Get the current length of the subset
// Iterate over each existing subset
for (int i = 0; i < length; i++) {
vector<int> currentSubset = subset[i]; // Get the current subset
// Create a new subset by making a copy of the current subset
vector<int> newSubset = currentSubset;
// Add the current element to the new subset
newSubset.push_back(ele);
// Append the new subset to the powerset
subset.push_back(newSubset);
}
}
// Return the powerset
return subset;
}