forked from gouthampradhan/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSubsets.java
56 lines (48 loc) · 1.13 KB
/
Subsets.java
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
package backtracking;
import java.util.ArrayList;
import java.util.List;
/**
* Created by gouthamvidyapradhan on 14/03/2017.
Given a set of distinct integers, nums, return all possible subsets.
Note: 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],
[]
]
*/
public class Subsets
{
/**
* Main method
* @param args
* @throws Exception
*/
public static void main(String[] args) throws Exception
{
int[] n = {1, 2, 3};
List<List<Integer>> result = new Subsets().subsets(n);
}
public List<List<Integer>> subsets(int[] nums)
{
List<List<Integer>> result = new ArrayList<>();
result.add(new ArrayList<>()); //empty subset
for(int i = 0, l = nums.length; i < l; i ++)
{
for(int j = 0, resLen = result.size(); j < resLen; j++)
{
List<Integer> newList = new ArrayList<>(result.get(j));
newList.add(nums[i]);
result.add(newList);
}
}
return result;
}
}