Java子集leetcode

Java子集leetcode,第1张

给你一个整数数组 nums ,数组中的元素 互不相同 。返回该数组所有可能的子集(幂集)。

解集 不能 包含重复的子集。你可以按 任意顺序 返回解集。

提示:

1 <= nums.length <= 10
-10 <= nums[i] <= 10
nums 中的所有元素 互不相同

class Solution {

    List> res = new ArrayList<>();
    LinkedList path = new LinkedList<>();

    public List> subsets(int[] nums) {
        //res.add(new LinkedList<>());
        recuit(nums,0);
        return res;
    }

    public void recuit(int[] nums,int start){
        res.add(new LinkedList<>(path));
        for(int i = start;i < nums.length;i++){
            path.addLast(nums[i]);
            recuit(nums,i+1);
            path.removeLast();
        }
    }
}

1ms;41.8MB

把LinkedList替换为ArrayList,

class Solution {

    List> res = new ArrayList<>();
    ArrayList path = new ArrayList<>();

    public List> subsets(int[] nums) {
        //res.add(new LinkedList<>());
        recuit(nums,0);
        return res;
    }

    public void recuit(int[] nums,int start){
        res.add(new ArrayList<>(path));
        for(int i = start;i < nums.length;i++){
            path.add(nums[i]);
            recuit(nums,i+1);
            path.remove(path.size()-1);
        }
    }
}

执行用时:0 ms, 在所有 Java 提交中击败了100.00%的用户

内存消耗:41.3 MB, 在所有 Java 提交中击败了63.57%的用户

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/725484.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-26
下一篇 2022-04-26

发表评论

登录后才能评论

评论列表(0条)

保存