【LeetCode】77. 组合

牛客华为机试题库【题号 HJ开头】(重点看)
牛客在线编程算法篇【题号NC开头】
剑指offer【题号 JZ开头】
力扣

1)原题链接

2)已有题解

3)代码

package dfs;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.*;

import static java.lang.Integer.parseInt;
import static java.lang.System.in;

/**
 * LeetCode77. 组合
 * 范围 [1, n] 中所有可能的 k 个数的组合
 */
public class Leetcode77Combinations {

    public static void main(String[] args) throws IOException {
        BufferedReader bf = new BufferedReader(new InputStreamReader(in));
        bf.close();

        int n = 5; // n个数,1,2,3,4,5
        int k = 3; // 任意三个的组合
        List<List<Integer>> res = combine(n, k);
        System.out.println(res);
    }

    /**
     * LeetCode77. 组合
     * 范围 [1, n] 中所有可能的 k 个数的组合
     */
    public static List<List<Integer>> combine(int n, int k) {
        // k<=0时没意义;
        // n<k时没意义,一共才n个想取k个不合理
        if (k <= 0 || n < k) {
            return new ArrayList<>();
        }

        List<List<Integer>> res = new ArrayList<>();
        Deque<Integer> stack = new LinkedList<>();
        dfs(1, n, k, stack, res);

        return res;
    }

    public static void dfs(int start, int milestone, int limit, Deque<Integer> stack, List<List<Integer>> res) {
        if (stack.size() == limit) {
            res.add(new ArrayList<>(stack));
            System.out.println(new ArrayList<>(stack));
            return;
        }

        for (int i = start; i <= milestone; i++) {
            stack.push(i);
            dfs(i + 1, milestone, limit, stack, res);
            stack.pop();
        }
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值