美文网首页
LeetCode-78-子集

LeetCode-78-子集

作者: 蒋斌文 | 来源:发表于2021-05-24 09:42 被阅读0次

LeetCode-78-子集

78. 子集

难度中等1185收藏分享切换为英文接收动态反馈

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

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

示例 1:

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

示例 2:

输入:nums = [0]
输出:[[],[0]]

提示:

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

image-20210524093256356

回溯法

public class Solution {

   public static List<List<Integer>> subsets(int[] nums) {
      List<List<Integer>> ans = new ArrayList<>();
      LinkedList<Integer> path = new LinkedList<>();
      process(nums, 0, path, ans);
      return ans;
   }

   // 当前来到index位置,做决定,1)不要当前位置的数   2)要当前位置的数
   // 如果要当前位置的数,把该数字,放入到path中去
   // 如果不要当前位置的数,不把该数字,放入到path中去
   public static void process(int nums[], int index, LinkedList<Integer> path, List<List<Integer>> ans) {
      if (index == nums.length) {
         ans.add(copy(path));
      } else {
         process(nums, index + 1, path, ans);//不选则nums[index],继续往下走, 左边分支
          
         path.addLast(nums[index]);//答案选择加入nums[index]
         process(nums, index + 1, path, ans);//走右边分支
         path.removeLast();//回溯,网上走,还原现场
      }
   }

   public static ArrayList<Integer> copy(LinkedList<Integer> path) {
      ArrayList<Integer> ans = new ArrayList<>();
      for (Integer num : path) {
         ans.add(num);
      }
      return ans;
   }

}

迭代递归法实现子集枚举

class Solution {
    public static List<List<Integer>> subsets(int[] nums){
        List<List<Integer>> ansList = new ArrayList<>();
        ansList.add(new ArrayList<>());//加入空集合
        for (int i=0;i<nums.length;i++){
            List<Integer> ans = new ArrayList<>();
            ans.add(nums[i]);
            ansList.add(ans);
            findSubSets(nums, ans, ansList, i+1);
        }
        return ansList;
    }

    private static void findSubSets(int[] nums, List<Integer> ans, List<List<Integer>> ansList, int nextIndex) {
        if (nextIndex == nums.length)
            return;
        for (int i=nextIndex;i<nums.length;i++){
            List<Integer> newAns = new ArrayList<>(ans);
            newAns.add(nums[i]);
            ansList.add(newAns);
            findSubSets(nums, newAns, ansList, i+1);
        }
    }
}
image-20210524093845435

相关文章

  • LeetCode-78-子集

    LeetCode-78-子集 78. 子集[https://leetcode-cn.com/problems/su...

  • GO Term子集:subset即GO slims的了解

    GO子集指南 关于子集 什么是GO子集? GO子集(也称为GO slims)是GO的缩减版本,包含术语的子集。它们...

  • Subset vs. Subarray vs. Subseque

    subset: 数学上子集的概念 subarray:连续的子集 subsequence:可以不连续的子集 * 子序...

  • 0/1背包问题 0/1 Knapsack

    题目列表 相等子集划分问题 Equal Subset Sum Partition 416. 分割等和子集 子集和问...

  • R语言-列表

    生成列表list函数 取一个子集 取子集的子集 转换为列表及解除列表 列表的转换

  • 子集

    给定一组不含重复元素的整数数组 nums,返回该数组所有可能的子集(幂集)。 说明:解集不能包含重复的子集。 示例...

  • 子集

    思路: S={1,2,3}对于一个集合S'={1,2},其子集共有四个{},{1},{2},{1,2}。集合S=S...

  • 子集

    【云游】 渐入星光月, 青衣摇撸樵。 手中关山渡, 兜里乾坤娇。 问道溪芳草, 松江怒水涛。 香封格子信, 花舞玄...

  • 子集

    有以下成绩,显示所有及格人员名字,以及超过平均值的名字张三 87李四 68王丹 91张飞 50王慧 72

  • 子集

    题目来源:力扣(LeetCode)链接:https://leetcode-cn.com/problems/subs...

网友评论

      本文标题:LeetCode-78-子集

      本文链接:https://www.haomeiwen.com/subject/mqztsltx.html