码迷,mamicode.com
首页 > 其他好文 > 详细

[leetcode] Combination Sum

时间:2014-06-27 12:11:50      阅读:337      评论:0      收藏:0      [点我收藏+]

标签:des   class   blog   code   java   http   

Given a set of candidate numbers (C) 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.
  • Elements in a combination (a1, a2, … , ak) must be in non-descending order. (ie, a1a2 ≤ … ≤ ak).
  • The solution set must not contain duplicate combinations.

For example, given candidate set2,3,6,7and target7,
A solution set is:
[7]

[2, 2, 3]

https://oj.leetcode.com/problems/combination-sum/

思路:返回所有可能,只能枚举了,先排序,然后此题每个元素可以取多次,所以递归下一层的时候选取的元素不变(区别Combination Sum II 中递归下一层只能从后面元素选取)。

import java.util.ArrayList;
import java.util.Arrays;

public class Solution {
	public ArrayList<ArrayList<Integer>> combinationSum(int[] candidates,
			int target) {
		ArrayList<ArrayList<Integer>> result = new ArrayList<ArrayList<Integer>>();
		if (candidates == null || candidates.length == 0)
			return result;

		int n = candidates.length;

		Arrays.sort(candidates);
		ArrayList<Integer> list = new ArrayList<Integer>();

		dfs(0, candidates, target, list, result);

		return result;
	}

	private void dfs(int level, int[] a, int num, ArrayList<Integer> list,
			ArrayList<ArrayList<Integer>> result) {
		if (num == 0) {
			result.add(new ArrayList<Integer>(list));
		} else if (num < 0)
			return;
		else {
			for (int i = level; i < a.length; i++) {
				if (a[i] <= num) {
					list.add(a[i]);
					dfs(i, a, num - a[i], list, result);
					list.remove(list.size() - 1);
				}
			}

		}
	}

	public static void main(String[] args) {
		System.out.println(new Solution().combinationSum(
				new int[] { 2, 3, 6, 7 }, 7));
		System.out.println(new Solution().combinationSum(
				new int[] { 1, 3, 6, 7 }, 7));

		System.out.println(new Solution().combinationSum(
				new int[] { 7,3,2 }, 18));
	}

}

参考:

http://blog.csdn.net/linhuanmars/article/details/20828631

 

 

[leetcode] Combination Sum,布布扣,bubuko.com

[leetcode] Combination Sum

标签:des   class   blog   code   java   http   

原文地址:http://www.cnblogs.com/jdflyfly/p/3810748.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!