美文网首页算法练习
组合(LeetCode 77,与78,90属于一类)

组合(LeetCode 77,与78,90属于一类)

作者: 倚剑赏雪 | 来源:发表于2020-02-20 23:30 被阅读0次

题目

给定两个整数 n 和 k,返回 1 ... n 中所有可能的 k 个数的组合。
示例:
输入: n = 4, k = 2
输出:
[
[2,4],
[3,4],
[2,3],
[1,2],
[1,3],
[1,4],
]

解析

1.解法同78
2.当子List添加时首先判断是否等于K,等于K添加并跳出

public IList<IList<int>> Combine(int n, int k) {
        IList<IList<int>> res = new List<IList<int>>();
        BackTrackK(1,n,k,res,new List<int>());
        return res;
    }

    void BackTrackK(int idx,int max ,int len,IList<IList<int>> res, IList<int> temp)
    {
        if (temp.Count == len)
        {
            res.Add(new List<int>(temp));
            return;
        }
        for (int i = idx; i <= max; i++)
        {
            temp.Add(i);
            BackTrackK(i+1,max,len,res,temp);
            temp.RemoveAt((temp.Count-1));
        }
    }

相关文章

网友评论

    本文标题:组合(LeetCode 77,与78,90属于一类)

    本文链接:https://www.haomeiwen.com/subject/upqqqhtx.html