39. Combination Sum [leetcode][javascript解法]

  1. Combination Sum Add to List QuestionEditorial Solution My Submissions
    Total Accepted: 128797
    Total Submissions: 364687
    Difficulty: Medium
    Contributors: Admin
    Given a set of candidate numbers (C) and a target number (T), find all unique combinations in C where the candidate numbers sums to T.

The same repeated number may be chosen from C unlimited number of times.

Note:
All numbers (including target) will be positive integers.
The solution set must not contain duplicate combinations.
For example, given candidate set [2, 3, 6, 7] and target 7,
A solution set is:
[
[7],
[2, 2, 3]
]
Subscribe to see which companies asked this question

思路描述
先用快速排序进行排序。
借助有序字典,从大值到小值进行广度优先遍历算法,记录符合remainder为0 的路径。

/**
 * @param {number[]} candidates
 * @param {number} target
 * @return {number[][]}
 */
var g_result = [];
var g_target = [];
var g_candidates ;
var combinationSum = function(candidates, target) {

    g_result = [];
    g_target = target;

    qSort(candidates,0,candidates.length-1);
    g_candidates = candidates;

    //genCombination(target, []);
    genCombination1(target, [], g_candidates.length-1);//当数组变成有序之后,利用有序可以去掉重复的遍历路径


    return g_result;
};


var qSort= function(array , low , high)
{  
    if (low < high)
    {
         var pivotIndex = partition(array , low ,high);
         qSort(array, low , pivotIndex -1);
         qSort(array, pivotIndex + 1 , high);
    }
}

var partition =  function(array , low , high)
{
    var pivot = array[low];
    if(low > high)
    {
       while(low<high && pivot < array[high] ){ high--;}
       if(low < high) array[low++] = array[high];

       while(low<hight && pivot > array[low] ){ low++;}
       if(low < high )array[high++] = array[low];

    }
    array[low] = pivot;
    return low;
}

var genCombination1 = function(remainder , combination , maxIndex )
{
    if(remainder < 0)
    {
        return
    }
    else if (remainder > 0)
    {

        for(var  i = maxIndex ; i>= 0  ; i--)//这是遍历的不一样的地方。
        {
          var newcomb = combination.concat();
          newcomb.push(g_candidates[i]);
          genCombination1( remainder - g_candidates[i] ,newcomb,i );
        }
        return
    }
    else
    {
       g_result.push(combination);

    }

}


var genCombination = function(remainder , combination  )
{
    console.log("remainder:"+remainder+" combination"+combination);
    if(remainder < 0)
    {
        return
    }
    else if (remainder > 0)
    {

        for(var  i = 0 ; i < g_candidates.length ; i++)
        {
          var newcomb = combination.concat();
          newcomb.push(g_candidates[i]);
          genCombination( remainder - g_candidates[i] ,newcomb);
        }
        return
    }
    else
    {
       g_result.push(combination);

    }
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值