How to get MAX value from Dictionary?

前端 未结 8 2155
独厮守ぢ
独厮守ぢ 2020-12-30 19:16

I have

Dictionary d = new Dictionary();

How I can get an Guid which has MAX

相关标签:
8条回答
  • 2020-12-30 19:40

    This works great. It will return the GUID for the MAX date.

    Dictionary<Guid, DateTime> d = new Dictionary<Guid, DateTime>(); 
    var guidForMaxDate = d.FirstOrDefault(x => x.Value == d.Values.Max()).Key;
    
    0 讨论(0)
  • 2020-12-30 19:43

    Since this was the accepted answer, I'll try to cover every possible meaning of the question:

    var dict = new Dictionary<string, int> { { "b", 3 }, { "a", 4 } };
    
    // greatest key
    var maxKey = dict.Keys.Max(); // "b"
    
    // greatest value
    var maxValue = dict.Values.Max(); // 4
    
    // key of the greatest value
    // 4 is the greatest value, and its key is "a", so "a" is the answer.
    var keyOfMaxValue = dict.Aggregate((x, y) => x.Value > y.Value ? x : y).Key; // "a"
    

    Note: the question has System.Guid as the key type. It might not make sense to ask "what is the greatest GUID", since they are simply intended to be unique values, rather than represent any orderable concept. Nonetheless, the above code will work with any type that supports the > operator, string and int being chosen here for conciseness.

    0 讨论(0)
  • 2020-12-30 19:45
                var maxGuid = Guid.Empty;
                var maxDateTime = DateTime.MinValue;
                foreach (var kvp in d)
                {
                    if (kvp.Value > maxDateTime)
                    {
                        maxGuid = kvp.Key;
                        maxDateTime = kvp.Value;
                    }
                }
                Console.WriteLine("Guid of max date is: " + maxGuid.ToString());
    
    0 讨论(0)
  • 2020-12-30 19:50

    By using LINQ on dictionary.

    var MaximumValue = dict.FirstOrDefault(x => x.Value.Equals(dict.Values.Max()));
    
    0 讨论(0)
  • 2020-12-30 20:00

    Another way might helps to get Single KeyValuePair.

    KeyValuePair<char, int> GuidKeyPair = guidDict.FirstOrDefault( MaxGuid => MaxGuid.Value == guidDict.Values.Max());
    
    0 讨论(0)
  • 2020-12-30 20:01

    Ordering your data in the first place could be one solution.

    var maxGuid = d.OrderByDescending(x => x.Value).FirstOrDefault().Key;
    
    0 讨论(0)
提交回复
热议问题