子集

题目

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

思路

子集问题那就是对于所有path中收录的答案一律接受,也就是没有结束的判断

代码

class Solution {
public:
    vector<int> path;
    vector<vector<int>> result;
    void backing(vector<int>& nums, int startIndex) {
	result.push_back(path);//无条件收录
        for(int i = startIndex; i < nums.size(); i++) {
	    path.push_back(nums[i]);
            backing(nums, i + 1);
            path.pop_back();
	}
        return;
    }
    vector<vector<int>> subsets(vector<int>& nums) {
	backing(nums, 0);
        return result;
    }
};
posted @ 2023-04-10 15:19  铜锣湾陈昊男  阅读(25)  评论(0)    收藏  举报