zoukankan      html  css  js  c++  java
  • 77. Combinations(回溯)

    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 }
  • 相关阅读:
    springMVC源码分析
    世界近代史二
    世界近代历史
    UVA
    UVA
    UVA
    Web 前端开发学习之路(入门篇)
    01 Linux入门介绍
    2. Python基本知识
    1. 初识Python
  • 原文地址:https://www.cnblogs.com/zle1992/p/8902020.html
Copyright © 2011-2022 走看看