题目描述
给你一个整数数组 nums
,数组中的元素 互不相同 。返回该数组所有可能的子集(幂集)。
解集 不能 包含重复的子集。你可以按 任意顺序 返回解集。
示例 1:
示例 2:
1 2
| 输入:nums = [0] 输出:[[],[0]]
|
提示:
1 <= nums.length <= 10
-10 <= nums[i] <= 10
nums
中的所有元素 互不相同
解法
- 递归
- 包含当前数的子集组合=上一个数的获得的每一个子集组合+当前数
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| class Solution { public List<List<Integer>> subsets(int[] nums) { List<List<Integer>> result=new ArrayList<>(); result.add(new ArrayList<Integer>());
for (int num : nums) { List<List<Integer>> subSets=new ArrayList<>(); for (List<Integer> tempResult : result) { List<Integer> sets=new ArrayList<>(tempResult); sets.add(num); } result.addAll(subSets); } return result; } }
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| class Solution { List<List<Integer>> res=new ArrayList<>(); List<Integer> temp=new ArrayList<>(); public List<List<Integer>> subsets(int[] nums) { dfs(0,nums); return res; }
private void dfs(int n, int[] nums) { if (n== nums.length){ res.add(new ArrayList<>(temp)); return; } temp.add(nums[n]); dfs(n+1, nums); temp.remove(temp.size()-1); dfs(n+1, nums); } }
|
来源:力扣(LeetCode)
链接:78. 子集 - 力扣(LeetCode)