gpt4 book ai didi

C# - 查找两个 List 的共同成员 - Lambda 语法

转载 作者:太空狗 更新时间:2023-10-29 23:56:22 25 4
gpt4 key购买 nike

所以我编写了这个简单的控制台应用程序来帮助我提问。在方法的第 3 行使用 lambda 表达式获取公共(public)成员的正确方法是什么。尝试了 Join() 但无法找出正确的语法。作为后续……是否有一种非 LINQ 方法可以在我错过的一行中执行此操作?

class Program
{
static void Main(string[] args)
{
List<int> c = new List<int>() { 1, 2, 3 };
List<int> a = new List<int>() { 5, 3, 2, 4 };
IEnumerable<int> j = c.Union<int>(a);
// just show me the Count
Console.Write(j.ToList<int>().Count.ToString());

}
}

最佳答案

你想要Intersect():

IEnumerable<int> j = c.Intersect(a);

这是一个基于评论中提到的想法的 OrderedIntersect() 示例。如果你知道你的序列是有序的,它应该运行得更快——O(n) 而不是 .Intersect() 通常是什么(不记得我的头脑).但如果您不知道它们是有序的,它可能根本不会返回正确的结果:

public static IEnumerable<T> OrderedIntersect<T>(this IEnumerable<T> source, IEnumerable<T> other) where T : IComparable
{
using (var xe = source.GetEnumerator())
using (var ye = other.GetEnumerator())
{
while (xe.MoveNext())
{
while (ye.MoveNext() && ye.Current.CompareTo(xe.Current) < 0 )
{
// do nothing - all we care here is that we advanced the y enumerator
}
if (ye.Current.Equals(xe.Current))
yield return xe.Current;
else
{ // y is now > x, so get x caught up again
while (xe.MoveNext() && xe.Current.CompareTo(ye.Current) < 0 )
{ } // again: just advance, do do anything

if (xe.Current.Equals(ye.Current)) yield return xe.Current;
}

}
}
}

关于C# - 查找两个 List<T> 的共同成员 - Lambda 语法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1132446/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com