forked from shuboc/LeetCode-2
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsubsets.py
55 lines (48 loc) · 1.2 KB
/
subsets.py
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
# Time: O(n * 2^n)
# Space: O(1)
#
# Given a set of distinct integers, S, 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 S = [1,2,3], a solution is:
#
# [
# [3],
# [1],
# [2],
# [1,2,3],
# [1,3],
# [2,3],
# [1,2],
# []
# ]
#
class Solution:
# @param S, a list of integer
# @return a list of lists of integer
def subsets(self, S):
result = []
i, count = 0, 1 << len(S)
S = sorted(S)
while i < count:
cur = []
for j in xrange(len(S)):
if i & 1 << j:
cur.append(S[j])
result.append(cur)
i += 1
return result
class Solution2:
# @param S, a list of integer
# @return a list of lists of integer
def subsets(self, S):
return self.subsetsRecu([], sorted(S))
def subsetsRecu(self, cur, S):
if not S:
return [cur]
return self.subsetsRecu(cur, S[1:]) + self.subsetsRecu(cur + [S[0]], S[1:])
if __name__ == "__main__":
print Solution().subsets([1, 2, 3])