根据嵌套列表中包含的 id 元素比较两个通用列表的最有效方法 (C#)

Most efficient way to compare two generic lists based on id elements contained within nested list (C#)

我有两个通用的项目列表,每个列表都包含一个供应商列表及其 ID:

List<ExisitingItems>
    List<Suppliers>

List <PotentialMatches>
    List<Suppliers>

Suppliers
    SupplierId
    Name

我需要根据每个项目中嵌套的供应商 ID 和名称,将现有项目列表与潜在匹配项列表进行比较。

我目前将这两个列表与所需结果进行比较,如下所示:

  foreach (var potentialMatch in _potentialMatches)
            {
foreach (var supplier in potentialMatch.Suppliers)
                {
                    var match = ExistingItems.Find
                       (e => e.Suppliers.Any
                        (s => s.SupplierId == supplier.SupplierItemId && s.Name == supplier.Name));

//Do stuff with match
                }
             }

但是,当处理大于 500k 的大量记录时,效率不高且执行速度非常慢。

如何更有效地执行相同类型的比较?

您当前的算法似乎是 O(n*m*s*s),其中 n = 现有项目的数量,m = 潜在匹配项的数量,s = 每个 existingItem/PotentialMatch 的平均供应商数量。您可以通过使用散列集来匹配供应商,将 运行 时间减少到 O(n*m*s)

通用版本如下所示

public static IEnumerable<(T1, T2)> SetJoin<T1, T2, TKey>(
        IEnumerable<T1> t1s,
        IEnumerable<T2> t2s,
        Func<T1, IEnumerable<TKey>> t1Key,
        Func<T2, IEnumerable<TKey>> t2Key) where TKey : IEquatable<TKey>
    {
        foreach (var t1 in t1s)
        {
            var t1Keys = new HashSet<TKey>(t1Key(t1));
            foreach (var t2 in t2s)
            {
                // t2Key(t2) would be called many times, 
                // might be worth pre-computing it for each t2.
                if (t2Key(t2).Any(t1Keys.Contains))
                {
                    yield return (t1, t2);
                }
            }    
        }
    }

然后这样称呼它

SetJoin<ExistingItems, PotentialMatches, int>(
              existingItems, 
              potentialMatches,
              e=> e.Suppliers.Select(s => s.Id),
              p => p.Suppliers.Select(s => s.Id))

此外,虽然 linq 会产生紧凑而漂亮的代码,但如果性能很重要,使用常规循环编写等效逻辑通常会更快。