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

Combinations

时间:2015-06-06 06:49:13      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:

典型的dfs题,建议在其他dfs之前做

public class Solution {
    public ArrayList<ArrayList<Integer>> combine(int n, int k) {
        ArrayList<ArrayList<Integer>> res = new ArrayList<ArrayList<Integer>>();
        if(n<=0 || k>n) return res;
        ArrayList<Integer> item =new ArrayList<Integer>();
        dfs(res,n,k,item,1);
        return res;
    }
    private void dfs(ArrayList<ArrayList<Integer>> res, int n, int k, ArrayList<Integer> item, int start){
        if(item.size()==k){
            //res.add(item);
            res.add(new ArrayList<Integer>(item));
            return;
        }
        for(int i=start; i<=n;i++){
            item.add(i);
            dfs(res,n,k,item,i+1);
            item.remove(item.size()-1);
        }
    }
}

 

Combinations

标签:

原文地址:http://www.cnblogs.com/jiajiaxingxing/p/4555990.html

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