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

首頁 > 學院 > 開發設計 > 正文

LeetCode: Combination Sum

2019-11-11 02:51:34
字體:
來源:轉載
供稿:網友

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;    }};
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 凤冈县| 阿拉尔市| 磴口县| 龙胜| 综艺| 扶绥县| 色达县| 日喀则市| 贵州省| 定南县| 武邑县| 那曲县| 黄冈市| 遵义市| 盐边县| 射洪县| 娄底市| 隆昌县| 婺源县| 宁海县| 麻城市| 西丰县| 青铜峡市| 东城区| 呼玛县| 大城县| 仲巴县| 蛟河市| 双流县| 措勤县| 洪洞县| 华安县| 唐河县| 稻城县| 甘孜县| 宜春市| 木里| 醴陵市| 乌兰浩特市| 尉氏县| 昌都县|