博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Combination Sum
阅读量:4982 次
发布时间:2019-06-12

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

思路: 简单回溯。

class Solution {public:    vector
> combinationSum(vector
& candidates, int target) { vector
> res; vector
combination; sort(candidates.begin(), candidates.end()); DFS(candidates, target, res, combination, 0); return res; } void DFS(vector
& candidates, int target, vector
> &res, vector
&combination, int step) { if (target == 0) { res.push_back(combination); return; } for(int i = step; i < candidates.size() && target >= candidates[i]; i++) { combination.push_back(candidates[i]); DFS(candidates, target-candidates[i], res, combination, i); combination.pop_back(); } }};

转载于:https://www.cnblogs.com/acm1314/p/6752821.html

你可能感兴趣的文章
通过.frm表结构和.ibd文件恢复数据
查看>>
R语言之——字符串处理函数
查看>>
架构师速成5.1-小学gtd进阶
查看>>
Spring-aop(一)
查看>>
ucos在xp平台下开发环境搭建
查看>>
python基础入门while循环 格式化 编码初识
查看>>
cmake方式使用vlfeat
查看>>
windows下用纯C实现一个简陋的imshow:基于GDI
查看>>
struts2 自定义类型转换器
查看>>
cocos2d-x xna在有vs2012和vs2010的情况下的环境部署
查看>>
43-安装 Docker Machine
查看>>
c++学习(三):表达式和语句
查看>>
laravel框架基础知识总结
查看>>
nginx: 响应体太大
查看>>
字符串反混淆实战 Dotfuscator 4.9 字符串加密技术应对策略
查看>>
单例模式
查看>>
Robotium源码分析之Instrumentation进阶
查看>>
Android 交错 GridView
查看>>
(2)把BlackBerry作为插件安装到已有的Eclipse中
查看>>
VUE-es6
查看>>