返回介绍

lcof2 / 剑指 Offer II 080. 含有 k 个元素的组合 / README

发布于 2024-06-17 01:04:41 字数 2832 浏览 0 评论 0 收藏 0

剑指 Offer II 080. 含有 k 个元素的组合

题目描述

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

 

示例 1:

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

示例 2:

输入: n = 1, k = 1
输出: [[1]]

 

提示:

  • 1 <= n <= 20
  • 1 <= k <= n

 

注意:本题与主站 77 题相同: https://leetcode.cn/problems/combinations/

解法

方法一

class Solution:
  def combine(self, n: int, k: int) -> List[List[int]]:
    res = []

    def dfs(i, n, k, t):
      if len(t) == k:
        res.append(t.copy())
        return
      for j in range(i, n + 1):
        t.append(j)
        dfs(j + 1, n, k, t)
        t.pop()

    dfs(1, n, k, [])
    return res
class Solution {
  public List<List<Integer>> combine(int n, int k) {
    List<List<Integer>> res = new ArrayList<>();
    dfs(1, n, k, new ArrayList<>(), res);
    return res;
  }

  private void dfs(int i, int n, int k, List<Integer> t, List<List<Integer>> res) {
    if (t.size() == k) {
      res.add(new ArrayList<>(t));
      return;
    }
    for (int j = i; j <= n; ++j) {
      t.add(j);
      dfs(j + 1, n, k, t, res);
      t.remove(t.size() - 1);
    }
  }
}
class Solution {
public:
  vector<vector<int>> combine(int n, int k) {
    vector<vector<int>> res;
    vector<int> t;
    dfs(1, n, k, t, res);
    return res;
  }

  void dfs(int i, int n, int k, vector<int> t, vector<vector<int>>& res) {
    if (t.size() == k) {
      res.push_back(t);
      return;
    }
    for (int j = i; j <= n; ++j) {
      t.push_back(j);
      dfs(j + 1, n, k, t, res);
      t.pop_back();
    }
  }
};
func combine(n int, k int) [][]int {
  var res [][]int
  var t []int
  dfs(1, n, k, t, &res)
  return res
}

func dfs(i, n, k int, t []int, res *[][]int) {
  if len(t) == k {
    *res = append(*res, slices.Clone(t))
    return
  }
  for j := i; j <= n; j++ {
    t = append(t, j)
    dfs(j+1, n, k, t, res)
    t = t[:len(t)-1]
  }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文