摘要: /// <summary> /// 求数组中n个元素的组合 /// </summary> public static List<T[]> GetCombination<T>(T[] t, int n) { if (t.Length < n) { return new List<T[]>(){t}; 阅读全文
posted @ 2023-03-08 13:54 灰主流 阅读(149) 评论(0) 推荐(0) 编辑