首页 > 其他 > 详细

LeetCode Combinations

时间:2014-10-24 12:44:23      阅读:270      评论:0      收藏:0      [点我收藏+]

Given two integers n and k, return all possible combinations of k numbers out of 1 ... n.

For example,
If n = 4 and k = 2, a solution is:

[
  [2,4],
  [3,4],
  [2,3],
  [1,2],
  [1,3],
  [1,4],
]

public class Solution {
    List<List<Integer>> list=new ArrayList<>();
    public List<List<Integer>> combine(int n, int k) {
        List<List<Integer>> currList=new ArrayList<>();
            if (n==0 || k==0) {
                return list;
            }
            
        for (int i = 0; i < n; i++) {
            List<Integer> ele=new ArrayList<>();
            ele.add(i+1);
            currList.add(ele);
        }
        list.addAll(currList);
        currList.clear();
        if (k==1) {
            return list;
        }
                
            
            for (int i = 2; i <= k; i++) {
                for (List<Integer> l : list) {
                    for (int j = l.get(l.size()-1)+1; j <=n; j++) {
                        ArrayList<Integer> newlist=new ArrayList<>();
                        newlist.addAll(l);
                        newlist.add(j);
                        currList.add(newlist);
                    }
                }
                list.clear();
                list.addAll(currList);
                currList.clear();
            }
    return list;
    
    }
    
}

 

LeetCode Combinations

原文:http://www.cnblogs.com/birdhack/p/4047732.html

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