首页 > 其他 > 详细

Leetcode 39. Combination Sum

时间:2017-01-05 07:51:54      阅读:148      评论:0      收藏:0      [点我收藏+]

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]
]

一般跟求combiantion相关的题目基本上都会用到DFS。这里需要注意的是,用L22可以代替L23-L25。因为L22并没有改变 line, 所以line+[x]在内存中其实被另外的单独存储,所以不用line.pop()。

 1 class Solution(object):
 2     def combinationSum(self, candidates, target):
 3         """
 4         :type candidates: List[int]
 5         :type target: int
 6         :rtype: List[List[int]]
 7         """
 8         candidates.sort()
 9         
10         res = []
11         line = []
12         self.helper(candidates, target, res, line)
13         return res
14         
15     def helper(self, candidates, target, res, line):
16         if target == 0:
17             res.append([x for x in line])
18             return 
19     
20         for i, x in enumerate(candidates):
21             if x <= target:
22             #    self.helper(candidates[i:], target-x, res, line+[x])
23                 line.append(x)
24                 self.helper(candidates[i:], target-x, res, line)
25                 line.pop()
26     

 

Leetcode 39. Combination Sum

原文:http://www.cnblogs.com/lettuan/p/6250984.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!