How do I get the index of the highest value in an array using LINQ?

前端 未结 9 2168
死守一世寂寞
死守一世寂寞 2020-11-27 18:46

I have an array of doubles and I want the index of the highest value. These are the solutions that I\'ve come up with so far but I think that there must be a more elegant so

9条回答
  •  不知归路
    2020-11-27 18:54

    I suggest writing your own extension method (edited to be generic with an IComparable constraint.)

    public static int MaxIndex(this IEnumerable sequence)
        where T : IComparable
    {
        int maxIndex = -1;
        T maxValue = default(T); // Immediately overwritten anyway
    
        int index = 0;
        foreach (T value in sequence)
        {
            if (value.CompareTo(maxValue) > 0 || maxIndex == -1)
            {
                 maxIndex = index;
                 maxValue = value;
            }
            index++;
        }
        return maxIndex;
    }
    

    Note that this returns -1 if the sequence is empty.

    A word on the characteristics:

    • This works with a sequence which can only be enumerated once - this can sometimes be very important, and is generally a desirable feature IMO.
    • The memory complexity is O(1) (as opposed to O(n) for sorting)
    • The runtime complexity is O(n) (as opposed to O(n log n) for sorting)

    As for whether this "is LINQ" or not: if it had been included as one of the standard LINQ query operators, would you count it as LINQ? Does it feel particularly alien or unlike other LINQ operators? If MS were to include it in .NET 4.0 as a new operator, would it be LINQ?

    EDIT: If you're really, really hell-bent on using LINQ (rather than just getting an elegant solution) then here's one which is still O(n) and only evaluates the sequence once:

    int maxIndex = -1;
    int index=0;
    double maxValue = 0;
    
    int urgh = sequence.Select(value => {
        if (maxIndex == -1 || value > maxValue)
        {
            maxIndex = index;
            maxValue = value;
        }
        index++;
        return maxIndex;
     }).Last();
    

    It's hideous, and I don't suggest you use it at all - but it will work.

提交回复
热议问题