package com.utils; import java.math.BigDecimal; import java.math.RoundingMode; public class PLZUUtils { public static BigDecimal computePaiLie(int n, int m) { if(m > n || n < 0 || m < 0) { throw new IllegalArgumentException("n必须大于m!");…
今天群里有朋友求一个排列组合算法,题目是给定长度,输出所有指定字母的组合. 如指定字母a.b.c.d.e.f,长度为2,则结果应为:aa.ab.ac ... ef.ff. 有朋友给出算法,很有特色: var n = 0; for (int i = 0; i < Math.Pow(26, n); ++i) { int t = i; string str = ""; for (int j = n - 1; j >= 0; --j) { int s = (int)Math.Pow…
主要解决C(n,m)问题 static class Extension { public static IList<IList<T>> GetGroup<T>(this IList<T> list, int size) { if (list.Count < size) { throw new ArgumentOutOfRangeException("size"); } IList<IList<T>> resu…