78. 子集(简单)

给你一个整数数组 nums ,数组中的元素 互不相同 。返回该数组所有可能的子集(幂集)。

解集 不能 包含重复的子集。你可以按 任意顺序 返回解集。

示例 1:

输入:nums = [1,2,3]
输出:[[],[1],[2],[1,2],[3],[1,3],[2,3],[1,2,3]]

示例 2:

输入:nums = [0]
输出:[[],[0]]

提示:

1 <= nums.length <= 10
-10 <= nums[i] <= 10
nums 中的所有元素 互不相同

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/subsets

思路:

回溯

代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class Solution {
List<List<Integer>> res;
public List<List<Integer>> subsets(int[] nums) {
res = new ArrayList<>();
List<Integer> list = new ArrayList<>();
//从空开始
backtrack(nums,0,list);
return res;
}
void backtrack(int[] nums,int start,List<Integer> list){
res.add(new ArrayList<>(list));//将可以的结果加进去
for(int i=start;i<nums.length;i++){
list.add(nums[i]);
//System.out.println(nums[i]);
backtrack(nums,i+1, list);
list.remove(list.size()-1);
}
}
}