forked from damaohongtu/JavaInterview
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSubsets.java
More file actions
36 lines (32 loc) · 987 Bytes
/
Subsets.java
File metadata and controls
36 lines (32 loc) · 987 Bytes
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
package LeetCode;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
public class Subsets {
private List<List<Integer>> res=new ArrayList<>();
public List<List<Integer>> subsets(int[] nums) {
helper(nums,new ArrayList<>(),0);
HashSet h=new HashSet(res);
res.clear();
res.addAll(h);
return res;
}
public void helper(int[]nums,List<Integer>list,int start){
res.add(new ArrayList<Integer>(list));
for (int i = start; i < nums.length; i++) {
// if (list.contains(nums[i])) {
// continue;
// }
list.add(nums[i]);
helper(nums, list,i+1);
list.remove(list.size() - 1);
}
}
public static void main(String[]args){
int nums[]={1,2,2};
Subsets s=new Subsets();
List<List<Integer>> result=new ArrayList<>();
result=s.subsets(nums);
System.out.println(result);
}
}