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

216 Combination Sum iii

时间:2015-05-30 09:19:03      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:

    public List<List<Integer>> combinationSum3(int k, int n) {
        List<List<Integer>> res = new ArrayList<List<Integer>>();
        List<Integer> item = new ArrayList<Integer>();
        int sum[] = {0};
        dfs(k, n, res, item, 1, sum);
        return res;
    }
    public void dfs(int k, int n, List<List<Integer>> res, List<Integer> item, int depth, int[] sum) {
        if (item.size() > k || sum[0] > n) return; 
        if (item.size() == k && sum[0] == n) {
            res.add(new ArrayList<Integer>(item));
            return;
        }
        
        for (int i = depth; i <=9; i++) {
            item.add(i);
            sum[0] += i;
            dfs(k, n, res, item, i+1, sum);
            item.remove(item.size() - 1);
            sum[0] -= i;
        }
    }

 

216 Combination Sum iii

标签:

原文地址:http://www.cnblogs.com/77rousongpai/p/4539783.html

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