Java LeetCode 78. 子集

给定一组不含重复元素的整数数组 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) {
    
    
        List<List<Integer>> res = new ArrayList();
        Deque<Integer> que = new LinkedList();
       
        back(0,nums,que,res);
        return res;
    }
    public void back(int start,int[] nums,Deque<Integer> que,List<List<Integer>> res){
    
    
        
        res.add(new ArrayList(que));
            
        

        for(int i=start;i<nums.length;i++){
    
    
            que.addLast(nums[i]);
           
            back(i+1,nums,que,res);
            
            que.removeLast();
        }
    }
}

猜你喜欢

转载自blog.csdn.net/sakura_wmh/article/details/110788978