19

在 C# 中,我想List<KeyValuePair<int, string>>按列表中每个字符串的长度对 a 进行排序。在 Psuedo-Java 中,这将是匿名的,看起来像:

  Collections.Sort(someList, new Comparator<KeyValuePair<int, string>>( {
      public int compare(KeyValuePair<int, string> s1, KeyValuePair<int, string> s2)
      {
          return (s1.Value.Length > s2.Value.Length) ? 1 : 0;    //specify my sorting criteria here
      }
    });
  1. 如何获得上述功能?
4

3 回答 3

38

C# 中的等价物是使用 lambda 表达式和Sort方法:

someList.Sort((x, y) => x.Value.Length.CompareTo(y.Value.Length));

您也可以使用OrderBy扩展方法。它的代码略少,但它增加了更多开销,因为它创建了列表的副本而不是对其进行排序:

someList = someList.OrderBy(x => x.Value.Length).ToList();
于 2013-01-27T06:18:23.627 回答
12

您可以使用 linq 调用OrderBy

list.OrderBy(o => o.Value.Length);

有关@Guffa 指出的更多信息,请查找Linq 和 Deferred Execution,基本上它只会在需要时执行。因此,要立即从该行返回一个列表,您需要添加一个.ToList()将使要执行的表达式返回一个列表的列表。

于 2013-01-27T06:15:07.947 回答
4

你可以用这个

using System;
using System.Collections.Generic;

class Program
{
    static int Compare1(KeyValuePair<string, int> a, KeyValuePair<string, int> b)
    {
    return a.Key.CompareTo(b.Key);
    }

    static int Compare2(KeyValuePair<string, int> a, KeyValuePair<string, int> b)
    {
    return a.Value.CompareTo(b.Value);
    }

    static void Main()
    {
    var list = new List<KeyValuePair<string, int>>();
    list.Add(new KeyValuePair<string, int>("Perl", 7));
    list.Add(new KeyValuePair<string, int>("Net", 9));
    list.Add(new KeyValuePair<string, int>("Dot", 8));

    // Use Compare1 as comparison delegate.
    list.Sort(Compare1);

    foreach (var pair in list)
    {
        Console.WriteLine(pair);
    }
    Console.WriteLine();

    // Use Compare2 as comparison delegate.
    list.Sort(Compare2);

    foreach (var pair in list)
    {
        Console.WriteLine(pair);
    }
    }
}
于 2013-01-27T06:20:46.303 回答