首页 > 代码库 > 77. Combinations
77. Combinations
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], ]
本题也是采用回溯法,做法与之前的比较类似,代码如下:
1 public class Solution { 2 public List<List<Integer>> combine(int n, int k) { 3 List<List<Integer>> res= new ArrayList<>(); 4 backtracking(res,new ArrayList<Integer>(),n,k,1); 5 return res; 6 } 7 public void backtracking(List<List<Integer>> res,List<Integer> list,int n,int k,int cur){ 8 if(k==0) res.add(new ArrayList<Integer>(list)); 9 else if(k<0) return; 10 else if(k>0){ 11 for(int i=cur;i<=n;i++){ 12 list.add(i); 13 backtracking(res,list,n,k-1,i+1); 14 list.remove(list.size()-1); 15 } 16 } 17 } 18 }
77. Combinations
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。