leetcode随机刷题记录 剑指offer 2 082含有重复元素集合的组合

本文介绍了一种使用深度优先搜索(DFS)解决组合问题的方法,并通过剪枝技术提高效率。作者分享了如何在`combinationSum2`函数中实现DFS策略,以及如何处理重复结果以避免冗余。解决方案展示了在有限资源下暴力求解的巧妙优化。
摘要由CSDN通过智能技术生成

思路,dfs加剪枝,暴力做的勉强过了

class Solution {
public:
    stack <int> s;
    int tar;
    int l;
    vector <int> nums;
    vector<vector<int>> an;
    vector<vector<int>> combinationSum2(vector<int>& candidates, int target) {
        tar = target;
        nums = candidates;
        l = nums.size();
        sort(nums.begin(), nums.end());
        for(int i = 0; i < l; i++){
            s.push(nums[i]);
            dfs(i, nums[i]);
            s.pop();
        }
        return an;
    }
    void addInAn(){
        stack <int> q = s;
        vector <int> an1;
        while(!q.empty()){
            an1.push_back(q.top());
            q.pop();
        }
        int l2 = an.size();
        for(int i = 0; i < l2; i++){
            if(an[i] == an1){
                return;
            }
        }
        an.push_back(an1);
    }
    void dfs(int place, int nowVal){
        if(place >= l){
            return;
        }
        if(nowVal > tar){
            return;
        }
        if(nowVal == tar){
            addInAn();
            return;
        }
        for(int i = place + 1; i < l; i++){
            s.push(nums[i]);
            dfs(i, nowVal + nums[i]);
            s.pop();
        }
    }
};

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值