78. 子集 + 递归 + 幂集

题目来源

LeetCode_78

题目描述

给你一个整数数组 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 中的所有元素 互不相同

相似题目

46. 全排列

题解分析

解法一:回溯法

image

class Solution {
    List<List<Integer>> res = new LinkedList<>();
    public List<List<Integer>> subsets(int[] nums) {
        dfs(nums, 0, new LinkedList<Integer>());
        return res;
    }

    private void dfs(int[] nums, int pos, LinkedList<Integer> sta){
        res.add(new LinkedList<>(sta));
        if(pos >= nums.length){
            return;
        }
        for(int i=pos; i<nums.length; i++){
            sta.offerLast(nums[i]);
            dfs(nums, i+1, sta);
            sta.pollLast();
        }
    }
}
posted @ 2021-03-31 20:52  Garrett_Wale  阅读(54)  评论(0编辑  收藏  举报