比较两个通用列表

本文关键字:列表 两个 比较 | 更新日期: 2023-09-27 18:00:28

嗨,我如何比较两个列表,第一种ICollections <T>另一种List<T>查看它们是否包含相同的记录使用 Linq

比较两个通用列表

假设ICollection<T> xList<T> y...

如果记录的顺序很重要:

return x.SequenceEqual(y);

如果顺序无关紧要,我认为您最好的选择是跳过 LINQ 并使用HashSet<T>

return new HashSet<T>(x).SetEquals(y);

下面是一个示例代码,具体取决于序列是否重要:

        ICollection<int> collection1 = new List<int> { 5, 1, 6, 7, 3 };
        List<int> collection2 = new List<int> { 1, 5, 6, 7, 3 };
        bool considerSequence = true; // sequence is important
        bool areEquael;
        if (considerSequence)
        {
            areEquael = collection1.SequenceEqual(collection2);
        }
        else
        {
            areEquael = collection1.OrderBy(val => val).SequenceEqual(
                collection2.OrderBy(val => val));
        }

正如其他同事建议的那样,也考虑使用HashSet<T>。只需考虑到HashSet仅从 .NET Framework 3.5 开始可用。

    List<Guid> lst = new List<Guid>();
    List<Guid> lst1 = new List<Guid>();
    bool result = false;
    if (lst.Count == lst1.Count)
    {
        for (int i = 0; i < lst.Count; i++)
        {
            if (!lst[i].Equals(lst1[i]))
            {
                result = false;
                break;
            }
        }
    }
    else
    {
        result = false;
    }
    if (result)
    {
        Response.Write("List are same");
    }
    else
    {
        Response.Write("List are not same");
    }

使用这种类型的概念。

    List<int> lst = new List<int>();
    lst.Add(1);
    lst.Add(51);
    lst.Add(65);
    lst.Add(786);
    lst.Add(456);
    List<int> lst1 = new List<int>();
    lst1.Add(786);
    lst1.Add(1);
    lst1.Add(456);
    lst1.Add(65);
    lst1.Add(51);
    bool result = false;
    if (lst.Count == lst1.Count)
    {
        result = lst.Union(lst1).Count() == lst.Count;
    }
    if (result)
    {
        Response.Write("list are same");
    }
    else
    {
        Response.Write("list are not same");
    }

也试试这个.....

ICollection<int> list1 = new List<int>() { 1, 2, 3, 4, 5, 6 };
List<int> list2 = new List<int>() { 6, 7, 8, 9 };
bool contains = list1.Any(e => list2.Any(d => d.Equals(e)));