中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

LeetCode如何解決組合總和問題

發布時間:2021-12-15 13:45:00 來源:億速云 閱讀:107 作者:小新 欄目:大數據

這篇文章將為大家詳細講解有關LeetCode如何解決組合總和問題,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

題目

給定一個無重復元素的數組 candidates 和一個目標數 target ,找出 candidates 中所有可以使數字和為 target 的組合。

candidates 中的數字可以無限制重復被選取。

說明:
所有數字(包括 target)都是正整數。
解集不能包含重復的組合。
示例 1:
輸入:candidates = [2,3,6,7], target = 7,
所求解集為:
[
  [7],
  [2,2,3]
]
示例 2:
輸入:candidates = [2,3,5], target = 8,
所求解集為:
[
  [2,2,2,2],
  [2,3,3],
  [3,5]
]
提示:
1 <= candidates.length <= 30
1 <= candidates[i] <= 200
candidate 中的每個元素都是獨一無二的。
1 <= target <= 500
思路
回溯算法 + 剪枝
  • 輸入: candidates = [2, 3, 6, 7],target = 7。

  • 候選數組里有 2,如果找到了組合總和為 7 - 2 = 5 的所有組合,再在之前加上 2 ,就是 7 的所有組合;

  • 同理考慮 3,如果找到了組合總和為 7 - 3 = 4 的所有組合,再在之前加上 3 ,就是 7 的所有組合,依次這樣找下去。

代碼
class Solution {
    public List<List<Integer>> combinationSum(int[] candidates, int target) {
        int len = candidates.length;
        List<List<Integer>> res = new ArrayList<>();
        if(len == 0){
            return res;
        }
        Deque<Integer> path = new ArrayDeque<>();
        dfs(candidates,0,len,target,path,res);
        return res;
    }

    public void dfs(int[] candidates,int begin,int len,int target,Deque<Integer> path,List<List<Integer>> res){
        if(target < 0){
            return;
        }
        if(target == 0){
            res.add(new ArrayList<>(path));
        }
        for(int i = begin; i < len; i++){
            path.addLast(candidates[i]);
            dfs(candidates,i,len,target-candidates[i],path,res);
            path.removeLast();
        }
    }
}

關于“LeetCode如何解決組合總和問題”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

石景山区| 衡东县| 梁平县| 岳阳县| 富锦市| 定西市| 公安县| 达孜县| 崇明县| 钟山县| 晋城| 大田县| 碌曲县| 巴彦淖尔市| 肃宁县| 明光市| 南漳县| 新野县| 宜黄县| 南城县| 凤阳县| 漠河县| 凉城县| 南开区| 永登县| 麦盖提县| 阿克苏市| 叙永县| 肇庆市| 宁津县| 交口县| 塔城市| 洪江市| 彰化县| 栾川县| 丘北县| 苏尼特左旗| 理塘县| 乌拉特后旗| 威远县| 哈密市|