Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get MAX value from Dictionary?

I have

Dictionary<Guid, DateTime> d = new Dictionary<Guid, DateTime>(); 

How I can get an Guid which has MAX value?

like image 905
Terminador Avatar asked Apr 24 '12 02:04

Terminador


People also ask

Can you use Max on a dictionary Python?

The simplest way to get the max value of a Python dictionary is to use the max() function. The function allows us to get the maximum value of any iterable.

How do you find the maximum and minimum of a dictionary?

The easiest way to find the minimum or maximum values in a Python dictionary is to use the min() or max() built-in functions applied to the list returned by the dictionary values() method.


2 Answers

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.

like image 174
Asik Avatar answered Sep 21 '22 14:09

Asik


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; 
like image 37
Papa Burgundy Avatar answered Sep 17 '22 14:09

Papa Burgundy