leetcode78(子集:二进制枚举法)

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

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

示例:

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

题解(一):这是一道枚举+组合的问题,可以直接用回溯法解决

class Solution {
   
    List<List<Integer>>res=new ArrayList<>();
    Stack<Integer>stack=new Stack<>();
    public List<List<Integer>> subsets(int[] nums

你可能感兴趣的:(每天一道算法题)