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

77. Combinations(回溯)

时间:2018-04-21 17:45:15      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:output   ble   pre   oid   index   content   XA   panel   example   

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

Example:

Input: n = 4, k = 2
Output:
[
  [2,4],
  [3,4],
  [2,3],
  [1,2],
  [1,3],
  [1,4],
]

 

 1 class Solution {
 2     List<List<Integer>> res = new ArrayList<>();
 3     public List<List<Integer>> combine(int n, int k) {
 4         List<Integer> temp = new ArrayList<Integer>();
 5         help(temp,n,k,1);
 6         return res;
 7             
 8     }
 9     private void help(List<Integer> temp,int n ,int k ,int index){
10         if(k==0){
11             res.add(new ArrayList<Integer>(temp));
12         }
13         for(int i = index;i<=n;i++){
14             temp.add(i);
15             help(temp,n,k-1,i+1);
16             temp.remove(temp.size()-1);
17         }
18     }
19 }

 

77. Combinations(回溯)

标签:output   ble   pre   oid   index   content   XA   panel   example   

原文地址:https://www.cnblogs.com/zle1992/p/8902020.html

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