如何检查列表A包含列表B中的任何值?

时间:2012-09-11 19:17:28

标签: c# linq list

列表A:

1, 2, 3, 4

列表B:

2, 5

如何检查列表A是否包含列表B中的任何值?

e.g。像A.contains(a => a.id = B.id)?

8 个答案:

答案 0 :(得分:77)

如果您不关心性能,可以尝试:

a.Any(item => b.Contains(item))
// or, as in the column using a method group
a.Any(b.Contains)

但我先试试这个:

a.Intersect(b).Any()

答案 1 :(得分:18)

我已经介绍了Justins的两个解决方案。 a.Any(a => b.Contains(a))最快

using System;
using System.Collections.Generic;
using System.Linq;

namespace AnswersOnSO
{
    public class Class1
    {
        public static void Main(string []args)
        {
//            How to check if list A contains any value from list B?
//            e.g. something like A.contains(a=>a.id = B.id)?
            List<int> a = new List<int> {1,2,3,4};
            List<int> b = new List<int> {2,5};
            int times = 10000000;

            DateTime dtAny = DateTime.Now;
            for (int i = 0; i < times; i++)
            {
                var aContainsBElements = a.Any(b.Contains);
            }
            var time = (DateTime.Now - dtAny).TotalSeconds;

            DateTime dt2 = DateTime.Now;
            for (int i = 0; i < times; i++)
            {
                var aContainsBElements = a.Intersect(b).Any();
            }
            var time2 = (DateTime.Now - dt2).TotalSeconds;

            // time1: 1.1470656 secs
            // time2: 3.1431798 sec
        }
    }
}

答案 2 :(得分:12)

您可以Intersect这两个列表:

if (A.Intersect(B).Any())

答案 3 :(得分:5)

您可以使用此方法检查列表是否在另一个列表中

var list1 = new List<int> { 1, 2, 3, 4, 6 };
var list2 = new List<int> { 2, 3 };
bool a = list1.Any(c => list2.Contains(c));

答案 4 :(得分:3)

要获得更快,更简短的解决方案,可以使用HashSet代替List

a.Overlaps(b);

Overlaps documentation

此方法是O(n)而不是具有两个列表的O(n ^ 2)。

答案 5 :(得分:0)

我写了一个更快的方法,它可以让小的设置。但是我在一些数据中对它进行了测试,有时候它会比相交更快,但有时会快速交叉我的代码。

    public static bool Contain<T>(List<T> a, List<T> b)
    {
        if (a.Count <= 10 && b.Count <= 10)
        {
            return a.Any(b.Contains);
        }

        if (a.Count > b.Count)
        {
            return Contain((IEnumerable<T>) b, (IEnumerable<T>) a);
        }
        return Contain((IEnumerable<T>) a, (IEnumerable<T>) b);
    }

    public static bool Contain<T>(IEnumerable<T> a, IEnumerable<T> b)
    {
        HashSet<T> j = new HashSet<T>(a);
        return b.Any(j.Contains);
    }

Intersect调用未检查第二个大小的Set,这是Intersect的代码。

        Set<TSource> set = new Set<TSource>(comparer);
        foreach (TSource element in second) set.Add(element);
        foreach (TSource element in first)
            if (set.Remove(element)) yield return element;

两种方法的不同之处在于我的方法使用HashSet并检查计数,Intersect使用setHashSet更快。我们不担心它的表现。

测试:

   static void Main(string[] args)
    {
        var a = Enumerable.Range(0, 100000);
        var b = Enumerable.Range(10000000, 1000);
        var t = new Stopwatch();
        t.Start();
        Repeat(()=> { Contain(a, b); });
        t.Stop();
        Console.WriteLine(t.ElapsedMilliseconds);//490ms

        var a1 = Enumerable.Range(0, 100000).ToList();
        var a2 = b.ToList();
        t.Restart();
        Repeat(()=> { Contain(a1, a2); });
        t.Stop();

        Console.WriteLine(t.ElapsedMilliseconds);//203ms

        t.Restart();
        Repeat(()=>{ a.Intersect(b).Any(); });
        t.Stop();
        Console.WriteLine(t.ElapsedMilliseconds);//190ms

        t.Restart();
        Repeat(()=>{ b.Intersect(a).Any(); });
        t.Stop();
        Console.WriteLine(t.ElapsedMilliseconds);//497ms

        t.Restart();
        a.Any(b.Contains);
        t.Stop();
        Console.WriteLine(t.ElapsedMilliseconds);//600ms

    }

    private static void Repeat(Action a)
    {
        for (int i = 0; i < 100; i++)
        {
            a();
        }
    }

答案 6 :(得分:0)

我用这个计算:

int cnt = 0;

foreach (var lA in listA)
{
    if (listB.Contains(lA))
    {
        cnt++;
    }
}

答案 7 :(得分:0)

对不起,如果这无关紧要,但是在需要时将使用FindAll()返回具有匹配项的列表:

        private bool IsContain(string cont)
    {
        List<string> ListToMatch= new List<string>() {"string1","string2"};

        if (ListToMatch.ToArray().Any(cont.Contains))
        {
            return false;
        }
        else
            return true;
    }

和用法:

List<string> ListToCheck = new List<string>() {"string1","string2","string3","string4"};
List<string> FinalList = ListToCheck.FindAll(IsContain);

最终列表仅包含列表中要检查的匹配元素string1和string2。 可以轻松切换到int列表。