leetcode78. 子集(回溯)

给定一组不含重复元素的整数数组 nums,返回该数组所有可能的子集(幂集)。

说明:解集不能包含重复的子集。

示例:

输入: nums = [1,2,3]
输出:
[
[3],
[1],
[2],
[1,2,3],
[1,3],
[2,3],
[1,2],
[]
]

代码

class Solution {
    public List<List<Integer>> subsets(int[] nums) {

        sets(nums,0,new ArrayList<>());
        return ress;
    }
    public void sets(int[] nums,int start,List<Integer> temp) {
        ress.add(new ArrayList<>(temp));    //将上一层的路径加入
        for(int i=start;i<nums.length;i++)//可以选择的数字
        {
            temp.add(nums[i]);
            sets(nums, i+1, temp);
            temp.remove(temp.size()-1);//回溯
        }
        
    }
    List<List<Integer>> ress=new ArrayList<>();
}

猜你喜欢

转载自blog.csdn.net/weixin_44560620/article/details/107726162