LeetCode 78. 子集

Posted Xycdada

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 78. 子集相关的知识,希望对你有一定的参考价值。

 直接遍历,将当前字符加到每一个已有的子集中形成新的子集,直到遍历完成即可得到所有的子集。

 

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

 

以上是关于LeetCode 78. 子集的主要内容,如果未能解决你的问题,请参考以下文章

精选力扣500题 第61题 LeetCode 78. 子集c++/java详细题解

leetcode78 子集(Medium)

LeetCode:78. 子集90. 子集 II

[LeetCode] 78. 子集

Leetcode 78.子集

leetcode 78. 子集