题目描述
给定一个数组 candidates 和一个目标数 target ,找出 candidates 中所有可以使数字和为 target 的组合。
candidates 中的每个数字在每个组合中只能使用一次。
说明:
所有数字(包括目标数)都是正整数。
解集不能包含重复的组合。
示例 1:
输入: candidates = [10,1,2,7,6,1,5], target = 8,
所求解集为:
[
[1, 7],
[1, 2, 5],
[2, 6],
[1, 1, 6]
]
示例 2:
输入: candidates = [2,5,2,1,2], target = 5,
所求解集为:
[
[1,2,2],
[5]
]
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/combination-sum-ii
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
题解
这道题一开始做的时候是在每一处都做从小到大排序,来保证结果。
后来发现只要对一开始的数组进行排序就可以保证了,而且还可以剪枝加速。
这里 js 版本用了 JSON 对数据进行 stringify,然后当做 hash 来作结果判定。
/*** @param {number[]} candidates* @param {number} target* @return {number[][]}*/var combinationSum2 = function(candidates, target) {let ret = [];let res = [];let cand = [];let hash = [];function find(start, target) {for (let i = start; i < cand.length; i++) {let item = cand[i];if (item > target) return ;res.push(item);if (item === target) {pushRes(res.slice());} else {find(i + 1, target - item);}res.pop();}}function pushRes(res) {let resStr = JSON.stringify(res);if (hash.indexOf(resStr) < 0) {ret.push(res);hash.push(resStr);}}cand = candidates.sort(function(a, b) {return a - b;});// console.log(cand);find(0, target);return ret;};
这里注意一下:我自己一开始也翻了低级错误,js 的 sort 需要自写函数,从小到大可以写作:
let a = [4, 1, 3];a.sort(function(a, b) {return a - b;});// es6a.sort((a, b) => a - b);
