leetcode78.子集

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

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

示例:

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

解题思路:
遍历一遍数组,每次遍历都把原来res链表里面的子链全部加上这个数。

代码如下:

class Solution {
    public List<List<Integer>> subsets(int[] nums) {
        List<List<Integer>> res = new LinkedList<>();
        List<Integer> list = new LinkedList<>();
        for(int i = 0; i < nums.length; i ++) {
            int size = res.size();
            for(int j = 0; j < size; j++) {
                list = new LinkedList<>(res.get(j));
                list.add(nums[i]);
                res.add(list);
            }
            list = new LinkedList<>();
            list.add(nums[i]);
            res.add(list);
        }
        list = new LinkedList<>();
        res.add(list);
        return res;
    }
}