題目:給定乙個陣列candidates
和乙個目標數target
,找出candidates
中所有可以使數字和為target
的組合。
candidates
中的每個數字在每個組合中只能使用一次。
說明:
示例 1:
輸入:candidates =示例 2:[10,1,2,7,6,1,5]
, target =8
,所求解集為:[[1, 7],
[1, 2, 5],
[2, 6],
[1, 1, 6]
]
輸入: candidates = [2,5,2,1,2], target = 5,
所求解集為:
[ [1,2,2],
[5]]
思路一:
搜尋新組合時從下乙個元素開始;去重時通過hashset取出重複。在這段**中定義了類變數,使得整個類中都可以使用
class solution
for(int i=index;i> combinationsum2(int candidates, int target)
}return newlist;}}
思路 二
本題與39題相比主要有兩點不同。第一是本題中存在重複節點;第二是每個節點只能使用一次,類似於圖中的沒有自環出現。對於第二個問題來說,每次搜尋新路徑的時候從它的下乙個節點開始就可以解決;對於去重問題,以下**採用的是先對陣列進行排序,將所有相同權值的節點都放在一起,這樣可以方便跳過這些節點。
class solution
private void get(int candidates, int target, int i, listlist, list> res)
for (int p = i; p < candidates.length; p++) }}
執行最快的**:
具體的執**況弄不懂。。。。。是怎麼進行去重的。。。。
class solution
public void backtrack(int candidates, int target, int index, list> ans, listtmp, boolean used) else if(target > 0 && index < candidates.length) }}
}}
LeetCode 40組合總數
給定乙個陣列candidates和乙個目標數target,找出candidates中所有可以使數字和為target的組合。candidates中的每個數字在每個組合中只能使用一次。說明 示例 1 輸入 candidates 10,1,2,7,6,1,5 target 8,所求解集為 1,7 1,2,...
leetcode 40 組合總和
給定乙個陣列candidates和乙個目標數target,找出candidates中所有可以使數字和為target的組合。candidates中的每個數字在每個組合中只能使用一次。說明 示例 1 輸入 candidates 10,1,2,7,6,1,5 target 8,所求解集為 1,7 1,2,...
40 組合總和
給定乙個陣列 candidates 和乙個目標數 target 找出 candidates 中所有可以使數字和為 target 的組合。candidates 中的每個數字在每個組合中只能使用一次。說明 所有數字 包括目標數 都是正整數。解集不能包含重複的組合。class solution retur...