c# linq 实现 m选n 组合

void Main()
{
    var result = new[] { 1, 2, 3, 4, 5, 6, 7, 8, 9 }.DifferentCombinations(3);
    result.Dump();
}

public static class Ex
{
    public static IEnumerable<IEnumerable<T>> DifferentCombinations<T>(this IEnumerable<T> elements, int k)
    {
        return k == 0 ? new[] { new T[0] } :
          elements.SelectMany((e, i) =>
            elements.Skip(i + 1).DifferentCombinations(k - 1).Select(c => (new[] { e }).Concat(c)));
    }
}
// Define other methods and classes here

 

c# linq 实现 m选n 组合

上一篇:win2012R2配置双网卡绑定


下一篇:CentOS7.6安装KVM,并导入已有的windows8.1镜像