给你一个整数数组 nums ,数组中的元素 互不相同 。返回该数组所有可能的子集(幂集)。
解集 不能 包含重复的子集。你可以按 任意顺序 返回解集。
示例 1:
输入:nums = [1,2,3]
输出:[[],[1],[2],[1,2],[3],[1,3],[2,3],[1,2,3]]
示例 2:输入:nums = [0]
输出:[[],[0]]来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/subsets
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
class Solution {
List<List<Integer>> res = new ArrayList<>();
public List<List<Integer>> subsets(int[] nums) {
find(nums, 0, nums.length, new ArrayList<>());
return res;
}
public void find(int[] tar, int start, int end, List<Integer> list) {
res.add(new ArrayList<>(list));
for (int i = start; i < end; i++) {
list.add(tar[i]);
find(tar, ++start, end, list);
list.remove(list.size()-1);
}
}
}