代码之家  ›  专栏  ›  技术社区  ›  Skuta

有没有机会使用Linq(C#)获得唯一的记录?

  •  3
  • Skuta  · 技术社区  · 15 年前

    list<list<string>>

    list[x][0] list[x][0 ],当我选择它时,我想要整排 list[x] 被选中。我还没有在Linq中找到相应的示例,请帮助:(

    list<list<string>>
    

    包含字符串表的列表。每个字符串“table”都包含几个键 list[x][several_items] 我想从列表中获取唯一记录->意思是“表”中的第一项。

    item[0] = "2","3","1","3"
    item[1] = "2","3","4","2"
    item[3] = "10","2"
    item[4]= "1","2"
    

    -&燃气轮机;unique意味着我可以派生行 item[3] and item[4] 独一无二。因为第一次出现数字/字符串很重要。

    如果有2个或更多记录/行( item[x] of which first item (item[x][0]) 列表中存在多次,它不是唯一的。

    6 回复  |  直到 15 年前
        1
  •  10
  •   Jon Skeet    15 年前

    UniqueBy 底层的实现将显著提高效率,并且只对源代码进行一次迭代。

    如果我理解正确(问题很不清楚-如果你能提供一个例子会很有帮助),这就是你想要的:

    public static IEnumerable<T> OnlyUnique<T>(this IEnumerable<T> source)
    {
        // No error checking :)
    
        HashSet<T> toReturn = new HashSet<T>();
        HashSet<T> seen = new HashSet<T>();
    
        foreach (T element in source)
        {
            if (seen.Add(element))
            {
                toReturn.Add(element);
            }
            else
            {
                toReturn.Remove(element);
            }
        }
        // yield to get deferred execution
        foreach (T element in toReturn)
        {
            yield return element;
        }
    }
    

    编辑:好的,如果您只关心列表的第一个元素的唯一性,我们需要对其进行一些更改:

    public static IEnumerable<TElement> UniqueBy<TElement, TKey>
        (this IEnumerable<TElement> source,
         Func<TElement, TKey> keySelector)
    {
        var results = new LinkedList<TElement>();
        // If we've seen a key 0 times, it won't be in here.
        // If we've seen it once, it will be in as a node.
        // If we've seen it more than once, it will be in as null.
        var nodeMap = new Dictionary<TKey, LinkedListNode<TElement>>();
    
        foreach (TElement element in source)
        {
            TKey key = keySelector(element);
            LinkedListNode<TElement> currentNode;
    
            if (nodeMap.TryGetValue(key, out currentNode))
            {
                // Seen it before. Remove if non-null
                if (currentNode != null)
                {
                    results.Remove(currentNode);
                    nodeMap[key] = null;
                }
                // Otherwise no action needed
            }
            else
            {
                LinkedListNode<TElement> node = results.AddLast(element);
                nodeMap[key] = node;
            }
        }
        foreach (TElement element in results)
        {
            yield return element;
        }
    }
    

    list.UniqueBy(row => row[0])
    
        2
  •  2
  •   Blorgbeard    15 年前

    也许是这样的?

    var mylist = new List<List<string>>() {
        new List<string>() { "a", "b", "c" },
        new List<string>() { "a", "d", "f" },
        new List<string>() { "d", "asd" },
        new List<string>() { "e", "asdf", "fgg" }
    };
    var unique = mylist.Where(t => mylist.Count(s => s[0] == t[0]) == 1);
    

    unique 现在包含上面的“d”和“e”条目。

        3
  •  2
  •   takrl cck    13 年前

    //distinct select in LINQ to SQL with Northwind
    var myquery = from user in northwindDC.Employees
                  where user.FirstName != null || user.FirstName != ""
                  orderby user.FirstName
                  group user by user.FirstName into FN
                  select FN.First();
    
        4
  •  1
  •   Amy B    15 年前

    这是给你的一些Linq。

    List<List<string>> Records = GetRecords();
    //
    List<List<string> UniqueRecords = Records
      .GroupBy(r => r[0])
      .Where(g => !g.Skip(1).Any())
      .Select(g => g.Single())
      .ToList();
    
        5
  •  0
  •   Ariel    15 年前

    我会继续,把这一条加入战斗。

    using System;
    using System.Collections.Generic;
    using System.Linq;
    
    namespace ConsoleApplication1 {
        class Program {
            static void Main(string[] args) {
                List<string> xx = new List<string>() { "xx", "yy", "zz" };
                List<string> yy = new List<string>() { "11", "22", "33" };
                List<string> zz = new List<string>() { "aa", "bb", "cc" };
                List<List<string>> x = new List<List<string>>() { xx, yy, zz, xx, yy, zz, xx, yy };
                foreach(List<string> list in x.Distinct()) {
                    foreach(string s in list) {
                        Console.WriteLine(s);
                    }
                }
            }
        }
    }
    
        6
  •  0
  •   GvS    15 年前

    dictionary :

    List<List<string>> values;
    Dictionary<string, List<string>> index;
    

    将项目添加到值时,还可以将列表添加到索引中,并将字符串作为索引。

    values[x].Add(newString);
    index[newString] = values[x];
    

    然后,您可以通过以下方式获得正确的列表:

    List<string> list = index[searchFor]
    

    在构建索引时会损失一些(最小的)性能和内存,但在检索数据时会获得很多。

    如果字符串不是唯一的,还可以存储一个列表>在 词典