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 中的所有元素 互不相同

class Solution {
public:
    vector<vector<int>> result;
    vector<int> path;
    void backtracking(vector<int>& nums, int startIndex) {
    //push要放在遍历之前,不要漏了空集
        result.push_back(path);
        if(startIndex >= nums.size()) {
            return;
        }
        //横向遍历以i开始的的数字串
        for(int i = startIndex; i < nums.size(); i++) {
            path.push_back(nums[i]);
            //纵向遍历i之后的元素
            backtracking(nums, i + 1);
            path.pop_back();
        }
    }
    vector<vector<int>> subsets(vector<int>& nums) {
        result.clear();
        path.clear();
        backtracking(nums, 0);
        return result;
    }
};
posted @ 2023-02-28 20:57  Travelever  阅读(12)  评论(0)    收藏  举报