给你一个整数数组 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 { public List<List<Integer>> subsets(int[] nums) { List<List<Integer>> res = new ArrayList<>(); find(nums, new ArrayList<>(), res, 0); return res; } private void find(int[] nums, List<Integer> list, List<List<Integer>> res, int p) { // 从空串开始. res.add(new ArrayList<>(list)); for (int i = p; i < nums.length; ++ i) { list.add(nums[i]); // 递归 find(nums, list, res, i+ 1); // 还原 list.remove(list.size() - 1); } } }
标签:---,nums,int,res,list,力扣,子集,List,78 From: https://www.cnblogs.com/allWu/p/17207799.html