leetcode77. 组合

给定两个整数 n 和 k,返回 1 ... n 中所有可能的 k 个数的组合。

示例:

输入: n = 4, k = 2
输出:
[
  [2,4],
  [3,4],
  [2,3],
  [1,2],
  [1,3],
  [1,4],
]

思路:最简单的搜索和回溯,思路见代码。

class Solution {
  List> output = new LinkedList();
  int n;
  int k;

  public void backtrack(int first, LinkedList curr) {
    if (curr.size() == k)output.add(new LinkedList(curr));
    
    for (int i = first; i < n + 1; ++i) {
      curr.add(i);
      backtrack(i + 1, curr);
      curr.removeLast();
    }
  }

  public List> combine(int n, int k) {
    this.n = n;
    this.k = k;
    backtrack(1, new LinkedList());
    return output;
  }
}

 

你可能感兴趣的:(leetcode)