LeetCode刷题:组合(回溯法)

LeetCode刷题:组合(回溯法),第1张

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



你可以按 任何顺序 返回答案。


示例一:

示例二:

思路分析:

代码展示:

class Solution {
   List<List<Integer>> ans=new ArrayList<>();
    LinkedList<Integer> temp=new LinkedList<>();
    public List<List<Integer>> combine(int n, int k) {
        combineHelper(n,k,1);
        return ans;
    }
    public void combineHelper(int n, int k, int startIndex){
        if(temp.size()==k){
            ans.add(new ArrayList<>{temp});
            return;
        }
        for(int i=startIndex;i<=n;i++){
            temp.add(i);
            combineHelper(n,k,i+1);
            temp.removeLast();
        }
    }
}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/571839.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-09
下一篇 2022-04-09

发表评论

登录后才能评论

评论列表(0条)

保存