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

LeetCode OJ combine 3

时间:2016-07-01 01:02:47      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:

public class Solution {
    public List<List<Integer>> combinationSum3(int k, int n) {
        return combination(k, n, 1);
    }
    
    public List<List<Integer>> combination(int k, int target, int start) {
        List<List<Integer>> list = new ArrayList<>();
        if(k <= 0) return list;
        
        for(int i = start; i <= 10-k; i++){
            if(i < target){
                List<List<Integer>> tlist = combination(k, target - i, i+1);
                if(tlist.size() > 0){
                    for(List<Integer> alist : tlist){
                        alist.add(0, i);
                    }
                    list.addAll(tlist);
                }
            }
            else if(i == target){
                List<Integer> tlist = new LinkedList<>();
                tlist.add(target);
                list.add(tlist);
            }
            else break;
        }
        return list;
    }
}

 

LeetCode OJ combine 3

标签:

原文地址:http://www.cnblogs.com/liujinhong/p/5631594.html

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