78. 子集

   日期:2020-09-21     浏览:102    评论:0    
核心提示:LeetCode: 78. 子集回溯。class Solution { List<List<Integer>> ans = new ArrayList<>(); List<Integer> temp = new ArrayList<>(); public List<List<Integer>> subsets(int[] nums) { ans.add(new ArrayL

LeetCode: 78. 子集


回溯。



class Solution { 
    List<List<Integer>> ans = new ArrayList<>();
    List<Integer> temp = new ArrayList<>();
    public List<List<Integer>> subsets(int[] nums) { 
        ans.add(new ArrayList<>(temp));
        if(nums == null || nums.length == 0){  return ans; }
        int len = nums.length;

        getRes(nums,0, len);

        return  ans;
    }

    public void getRes(int [] arr, int start, int len){ 
        for (int i = start; i < len; i++) { 
                // 没被访问过
                temp.add(arr[i]);
                // 添加一种组合
                ans.add(new ArrayList<>(temp));
                getRes(arr, i + 1, len);
                temp.remove(temp.size() - 1);
        }

        return ;
    }
}



根据大佬的思路
挺有意思的



    
    public List<List<Integer>> subsets2(int[] nums) { 
        List<Integer> list = new ArrayList<>();
        List<List<Integer>> ans = new ArrayList<>();
        if(nums == null || nums.length == 0){  ans.add(list);return ans; }
        for (int i = 0; i < nums.length; i++) { 
            // 遇到一个数
            list.add(nums[i]);
            // 子集
            ans.add(new ArrayList<>(list));

            int len = ans.size() - 1;
            // 遍历子集,与新增的数形成新的子集
            for (int j = 0; j < len; j++) { 
                list.addAll(ans.get(j));
                // 添加一种组合
                ans.add(new ArrayList<>(list));

                list.clear(); list.add(nums[i]);
            }
            list.clear();
        }

        ans.add(new ArrayList<>());
        return ans;
    }


 
打赏
 本文转载自:网络 
所有权利归属于原作者,如文章来源标示错误或侵犯了您的权利请联系微信13520258486
更多>最近资讯中心
更多>最新资讯中心
0相关评论

推荐图文
推荐资讯中心
点击排行
最新信息
新手指南
采购商服务
供应商服务
交易安全
关注我们
手机网站:
新浪微博:
微信关注:

13520258486

周一至周五 9:00-18:00
(其他时间联系在线客服)

24小时在线客服