国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發(fā)設計 > 正文

LeetCode: Combination Sum

2019-11-11 01:42:05
字體:
供稿:網(wǎng)友

Given a set of candidate numbers (C)(without duplicates) and a target number (T), find all unique combinations inC 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]]
class Solution {    PRivate:    int index_count;    vector<vector<int> > results;    public:    void backtrace(int target, int sum, vector<int>& candidates, vector<int>& index, int n)    {        if (sum > target) {            return;        }        if (sum == target)        {            vector<int> result;            for (int i = 1; i <= n; ++i)            {                result.push_back(candidates[index[i]]);            }            results.push_back(result);            return;        }                // To avoid repeat         for (int i = index[n]; i < candidates.size(); ++i)        {            index[n+1] = i;            backtrace(target, sum + candidates[i], candidates, index, n+1);        }    }        vector<vector<int>> combinationSum(vector<int>& candidates, int target) {        sort(candidates.begin(), candidates.end());                vector<int> real_cdts;        for (int i = 0; i < candidates.size(); ++i) {            if (candidates[i] <= target) {                real_cdts.push_back(candidates[i]);            }            else {                break;            }        }                index_count = 10000;        vector<int> index = vector<int>(index_count, 0);                results.clear();        backtrace(target, 0, real_cdts, index, 0);                return results;    }};
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 娄烦县| 马鞍山市| 洛隆县| 定边县| 黔西| 萝北县| 铁岭县| 米易县| 巨鹿县| 大名县| 比如县| 上思县| 常山县| 齐河县| 东光县| 永川市| 陈巴尔虎旗| 横峰县| 广河县| 白沙| 汾西县| 博兴县| 廉江市| 甘孜县| 岳西县| 北海市| 繁昌县| 双鸭山市| 襄汾县| 平果县| 蒲江县| 亳州市| 瑞安市| 呼伦贝尔市| 阳春市| 阿图什市| 北安市| 合水县| 三河市| 鲁山县| 徐闻县|