78.子集
给你一个整数数组 nums
,数组中的元素 互不相同 。返回该数组所有可能的子集(幂集)。
解集 不能 包含重复的子集。你可以按 任意顺序 返回解集。
示例 1:
1 2
| 输入:nums = [1,2,3] 输出:[[],[1],[2],[1,2],[3],[1,3],[2,3],[1,2,3]]
|
示例 2:
1 2
| 输入:nums = [0] 输出:[[],[0]]
|
Solution
输入视角:
对于一个数,要做的只有选or不选
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
| 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; }
private 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); } }
|
答案视角:
每次都要选一个数
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
| 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; }
private void dfs(int i) { ans.add(new ArrayList<>(path)); if (i == nums.length) return; for (int j = i; j < nums.length; ++j) { path.add(nums[j]); dfs(j + 1); path.remove(path.size() - 1); } } }
|