博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
39. Combination Sum(C++)
阅读量:5323 次
发布时间:2019-06-14

本文共 1426 字,大约阅读时间需要 4 分钟。

Given a set of candidate numbers (C) (without duplicates) 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]] Solution:  回溯法
class Solution {public:        void combination(vector
& candidates, int target,vector
& tmp,vector
>& myvec,int start){ if(!target){ myvec.push_back(tmp); return; } for(int i=start;i
<=target;i++){ tmp.push_back(candidates[i]); combination(candidates,target-candidates[i],tmp,myvec,i); tmp.pop_back(); } } vector
> combinationSum(vector
& candidates, int target) { vector
> myvec; sort(candidates.begin(),candidates.end()); vector
tmp; combination(candidates,target,tmp,myvec,0); return myvec; }};

  

转载于:https://www.cnblogs.com/devin-guwz/p/6706058.html

你可能感兴趣的文章
移动、联通和电信,哪家的宽带好,看完你就知道该怎么选了!
查看>>
Linux设置环境变量的方法
查看>>
Atitit.进程管理常用api
查看>>
构建自己的项目管理方案
查看>>
利用pca分析fmri的生理噪声
查看>>
div水平居中且垂直居中
查看>>
epoll使用具体解释(精髓)
查看>>
AndroidArchitecture
查看>>
安装Endnote X6,但Word插件显示的总是Endnote Web"解决办法
查看>>
python全栈 计算机硬件管理 —— 硬件
查看>>
大数据学习
查看>>
简单工厂模式
查看>>
Delphi7编译的程序自动中Win32.Induc.a病毒的解决办法
查看>>
Objective-C 【关于导入类(@class 和 #import的区别)】
查看>>
倍福TwinCAT(贝福Beckhoff)常见问题(FAQ)-点击运行按钮进入到运行状态报错Error starting TwinCAT System怎么办 AdsWarning1823怎么办...
查看>>
【转】javascript 中的很多有用的东西
查看>>
Centos7.2正常启动关闭CDH5.16.1
查看>>
Android 监听返回键、HOME键
查看>>
Android ContentProvider的实现
查看>>
sqlserver 各种判断是否存在(表名、函数、存储过程等)
查看>>