如何从字典中获取最大值

本文关键字:获取 最大值 字典 | 更新日期: 2023-09-27 18:31:59

我有

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

如何获得具有MAX价值的Guid

如何从字典中获取最大值

由于这是公认的答案,我将尝试涵盖该问题的所有可能含义:

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"

注意:问题System.Guid为键类型。询问"什么是最大的 GUID"可能没有意义,因为它们只是唯一值,而不是表示任何可排序的概念。尽管如此,上面的代码将适用于任何支持>运算符的类型,为了简洁起见,选择stringint

很好用。 它将返回 MAX 日期的 GUID。

Dictionary<Guid, DateTime> d = new Dictionary<Guid, DateTime>(); 
var guidForMaxDate = d.FirstOrDefault(x => x.Value == d.Values.Max()).Key;
            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());

首先对数据进行排序可能是一种解决方案。

var maxGuid = d.OrderByDescending(x => x.Value).FirstOrDefault().Key;

Guid 实现了 IComparable,因此:

d.Keys.Max()

也不清楚为什么人们想要这样做......

接受的答案对我不起作用。以下代码(使用MoreLinq)完成了这项工作:

var fooDict = new Dictionary<string, int>();
var keyForBiggest = fooDict.MaxBy(kvp => kvp.Value).Key;
var biggestInt = fooDict[keyForBiggest];

通过在字典上使用 LINQ。

var MaximumValue = dict.FirstOrDefault(x => x.Value.Equals(dict.Values.Max()));

另一种方法可能有助于获取单个键值对。

KeyValuePair<char, int> GuidKeyPair = guidDict.FirstOrDefault( MaxGuid => MaxGuid.Value == guidDict.Values.Max());
相关文章: