我需要从这个集合中创建对和三元组的所有组合.
物品在双重或三重中的位置无关紧要.所以{1,2}等于{2,1}.
我怎样才能实现这一目标?也许有一些很好的方法通过liNQ做到这一点?
解决方法 在下面的代码中,我使用 linq生成所有唯一的双精度和三元组.我使用字符串总排序的事实.这会产生所有双打:
string[] items = { "A","B","C","D","E","F","G","H","I","J" };var combinations = from a in items from b in items where a.Compareto(b) < 0 orderby a,b select new { A = a,B = b };foreach(var pair in combinations) Console.Writeline("({0},{1})",pair.A,pair.B);
这会生成所有三元组:
string[] items = { "A","J" };var combinations = from a in items from b in items from c in items where a.Compareto(b) < 0 && b.Compareto(c) < 0 orderby a,b,c select new { A = a,B = b,C = c };foreach(var triplet in combinations) Console.Writeline("({0},{1},{2})",triplet.A,triplet.B,triplet.C);
更新:有一个通用的解决方案来创建特定长度的所有唯一子集,仍然使用linq.但是,您需要一个可以包含子集的返回类型.我创建了一个简单的类linkednode,因为对我而言,这与linq结合起来感觉最自然:
voID Main(){ string[] items = { "A","J" }; foreach(var combination in CreateCombinations(items,5)) Console.Writeline("({0})",combination.ToString());}private static IEnumerable<linkednode> CreateCombinations(string[] items,int length){ if(length == 1) return items.Select(item => new linkednode { Value = item,Next = null }); return from a in items from b in CreateCombinations(items,length - 1) where a.Compareto(b.Value) < 0 orderby a,b.Value select new linkednode<T> { Value = a,Next = b };}public class linkednode{ public string Value { get; set; } public linkednode Next { get; set; } public overrIDe string ToString() { return (this.Next == null) ? Value : Value + "," + Next.ToString(); }}
应该很容易实现IEnumerable< string>在linkednode类上,或以其他方式将linkednodes转换为List< string>或HashSet< string>.请注意,如果订单不重要,您可以删除a,b.Value的行顺序.
总结以上是内存溢出为你收集整理的c# – 从集合中创建独特的双打和三元组全部内容,希望文章能够帮你解决c# – 从集合中创建独特的双打和三元组所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)