20

假设我有某种类型的集合,例如

IEnumerable<double> values;

现在我需要从该集合中提取 k 个最高值,用于某些参数 k。这是一种非常简单的方法:

values.OrderByDescending(x => x).Take(k)

但是,这(如果我理解正确的话)首先对整个列表进行排序,然后选择前 k 个元素。但是如果列表非常大,并且 k 相对较小(小于 log n),这不是很有效 - 列表按 O(n*log n) 排序,但我认为从列表中选择 k 个最高值应该更像 O(n*k)。

那么,有人对更好、更有效的方法有什么建议吗?

4

4 回答 4

6

这提供了一点性能提升。请注意,它是升序而不是降序,但您应该能够重新调整它的用途(见评论):

static IEnumerable<double> TopNSorted(this IEnumerable<double> source, int n)
{
    List<double> top = new List<double>(n + 1);
    using (var e = source.GetEnumerator())
    {
        for (int i = 0; i < n; i++)
        {
            if (e.MoveNext())
                top.Add(e.Current);
            else
                throw new InvalidOperationException("Not enough elements");
        }
        top.Sort();
        while (e.MoveNext())
        {
            double c = e.Current;
            int index = top.BinarySearch(c);
            if (index < 0) index = ~index;
            if (index < n)                    // if (index != 0)
            {
                top.Insert(index, c);
                top.RemoveAt(n);              // top.RemoveAt(0)
            }
        }
    }
    return top;  // return ((IEnumerable<double>)top).Reverse();
}
于 2013-02-26T12:51:30.490 回答
2

考虑以下方法:

static IEnumerable<double> GetTopValues(this IEnumerable<double> values, int count)
{
    var maxSet = new List<double>(Enumerable.Repeat(double.MinValue, count));
    var currentMin = double.MinValue;

    foreach (var t in values)
    {
        if (t <= currentMin) continue;
        maxSet.Remove(currentMin);
        maxSet.Add(t);
        currentMin = maxSet.Min();
    }

    return maxSet.OrderByDescending(i => i);
}

和测试程序:

static void Main()
{
    const int SIZE = 1000000;
    const int K = 10;
    var random = new Random();

    var values = new double[SIZE];
    for (var i = 0; i < SIZE; i++)
        values[i] = random.NextDouble();

    // Test values
    values[SIZE/2] = 2.0;
    values[SIZE/4] = 3.0;
    values[SIZE/8] = 4.0;

    IEnumerable<double> result;

    var stopwatch = new Stopwatch();

    stopwatch.Start();
    result = values.OrderByDescending(x => x).Take(K).ToArray();
    stopwatch.Stop();
    Console.WriteLine(stopwatch.ElapsedMilliseconds);

    stopwatch.Restart();
    result = values.GetTopValues(K).ToArray();
    stopwatch.Stop();
    Console.WriteLine(stopwatch.ElapsedMilliseconds);
}

在我的机器上结果是100214

于 2013-02-26T13:03:16.987 回答
0

另一种方法(多年来一直没有使用 C#,所以它是伪代码,抱歉)是:

highestList = []
lowestValueOfHigh = 0
   for every item in the list
        if(lowestValueOfHigh > item) {
             delete highestList[highestList.length - 1] from list
             do insert into list with binarysearch
             if(highestList[highestList.length - 1] > lowestValueOfHigh)
                     lowestValueOfHigh = highestList[highestList.length - 1]
   }
于 2013-02-26T12:44:45.857 回答
0

如果没有分析,我不会说明任何有关性能的内容。在这个答案中,我将尝试实施O(n*k)采取一个枚举换一个最大值的方法。我个人认为订购方法是优越的。反正:

public static IEnumerable<double> GetMaxElements(this IEnumerable<double> source)
    {
        var usedIndices = new HashSet<int>();
        while (true)
        {
            var enumerator = source.GetEnumerator();
            int index = 0;
            int maxIndex = 0;
            double? maxValue = null;
            while(enumerator.MoveNext())
            {
                if((!maxValue.HasValue||enumerator.Current>maxValue)&&!usedIndices.Contains(index))
                {
                    maxValue = enumerator.Current;
                    maxIndex = index;
                }
                index++;
            }
            usedIndices.Add(maxIndex);
            if (!maxValue.HasValue) break;
            yield return maxValue.Value;
        }
    }

用法:

var biggestElements = values.GetMaxElements().Take(3);

缺点:

  1. 方法假定源 IEnumerable 有一个顺序
  2. 方法使用额外的内存/操作来保存使用的索引。

优势:

  • 您可以确定需要一次枚举才能获得下一个最大值。

看到它运行

于 2013-02-26T13:25:30.883 回答