leetcode 子集
给你一个整数数组 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
中的所有元素 互不相同
class Solution {
// 这次和上次得视频中大差不差
//上次知识每次必须得选数字,这道题不一定选择数字
private final List<List<Integer>> ans = new ArrayList<>();
private final List<Integer> path = new ArrayList<>();
private int[] nums;
public List<List<Integer>> subsets(int[] nums) {
this.nums=nums;
dfs(0);//开始深搜
return ans;
}
public void dfs(int i){
if(i==nums.length){
ans.add(new ArrayList<>(path));
return ;
}
//不选数字
dfs(i+1);
//选数字
path.add(nums[i]);
dfs(i+1);
//恢复现场
path.remove(path.size()-1);
}
}