给定一个数组 candidates 和一个目标数 target ,找出 candidates 中所有可以使数字和为 target 的组合。

candidates 中的每个数字在每个组合中只能使用一次。

说明:

所有数字(包括目标数)都是正整数。
解集不能包含重复的组合。 
示例 1:

输入: candidates = [10,1,2,7,6,1,5], target = 8,
所求解集为:
[
[1, 7],
[1, 2, 5],
[2, 6],
[1, 1, 6]
]
示例 2:

输入: candidates = [2,5,2,1,2], target = 5,
所求解集为:
[
  [1,2,2],
  [5]
]

class Solution:
def combinationSum2(self, candidates: List[int], target: int) -> List[List[int]]:
if len(candidates)<=:
return []
candidates.sort()
self.res = []
self.dfs(candidates,[],target,)
return self.res
def dfs(self,candidates,sublist,target,index):
if target == :
self.res.append(sublist)
return
if target < :
return
for i in range(index,len(candidates)): # 从当前index开始遍历
if i != index and candidates[i] == candidates[i-]: # 保证每个数字只使用一次
continue
self.dfs(candidates,sublist+[candidates[i]],target-candidates[i],i+)

参考链接: https://blog.csdn.net/weixin_40546602/article/details/88357837

回溯递归函数dfs(self,candidates,sublist,target,index),index为当前遍历到数组的位置,因为不允许重复使用元素,只可依次遍历。

剪枝操作1: 当target值已经小于0,由于数组中包含负数,所有之间返回

剪枝操作2:保证每个数字只使用一次

最新文章

  1. Android实现侧边栏SlidingPaneLayout
  2. livecd环境下chroot修复系统
  3. 开源PLM软件Aras详解六 角色与用户以及权限
  4. C# 读写ini文件
  5. JS 特殊字符的魅力
  6. C#文件与流(FileStream、StreamWriter 、StreamReader 、File、FileInfo、Directory、directoryInfo、Path、Encoding)
  7. 微软自带iscsi客户端对iqn的要求
  8. Javascript AMD模块化规范-备用
  9. 清理yum源
  10. STL---基本算法---&lt;stl_algobase.h&gt;概述
  11. java多线程之守护线程以及Join方法
  12. CodeForces 909E Coprocessor(无脑拓扑排序)
  13. git tag 打标签
  14. puppeteer(二)操作实例——新Web自动化工具更轻巧更简单
  15. eclipse2019-03设置代码编辑区背景为图片
  16. 修改CentOS的IP地址
  17. Codeforces Round #370 (Div. 2) C. Memory and De-Evolution 水题
  18. 腾讯云CentOS 安装 Hadoop 2.7.3
  19. 贫血模型;DTO:数据传输对象(Data Transfer Object);AutoMapper ;Domain Model(领域模型);DDD(领域驱动设计)
  20. OpenGL10-骨骼动画原理篇(2)

热门文章

  1. 对于出现拒绝访问root用户的解决方案
  2. vue表单校验(三)
  3. 计算机系统结构总结_Memory Review
  4. 锋利的JS解读——认识JQuery(一)
  5. 原生js格式化json和格式化xml的方法
  6. Linux 设置定时清除buff/cache的脚本
  7. python二维码模块(qrcode)
  8. openGL坐标系
  9. Keepalived+Nginx+tomcat实现主备+负载
  10. redis 五大类型 、持久化方式以及主从(哨兵模式)