首页 > 其他 > 详细

Combinations

时间:2014-02-06 16:29:28      阅读:441      评论: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],
]

 

bubuko.com,布布扣
 1 public class Solution {
 2     public ArrayList<ArrayList<Integer>> combine(int n, int k) {
 3         ArrayList<ArrayList<Integer>> res = new ArrayList<ArrayList<Integer>>();
 4         get(n,k,1,new ArrayList<Integer>(),res);
 5         return res;
 6     }
 7     public void get(int n,int k,int start,ArrayList<Integer>output,ArrayList<ArrayList<Integer>>res){
 8         if(output.size()==k){
 9             ArrayList<Integer> temp = new ArrayList<Integer>();
10             temp.addAll(output);
11             res.add(temp);
12             return;
13         }
14         for(int i=start;i<=n;i++){
15             output.add(i);
16             get(n,k,i+1,output,res);
17             output.remove(output.size()-1);
18         }
19     }
20 }
View Code

 

Combinations

原文:http://www.cnblogs.com/krunning/p/3538768.html

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