gpt4 book ai didi

c# - 在字典中查找最接近给定值的值 C#

转载 作者:行者123 更新时间:2023-12-05 01:47:17 26 4
gpt4 key购买 nike

我有一本字典,我想找出哪个“键”值最接近给定值,下面是我的字典。

Dictionary<double, int> dictionary = new Dictionary<double, int>();

dictionary.Add(2.4, 5000);
dictionary.Add(6, 2000);
dictionary.Add(12, 1000);
dictionary.Add(24, 500);
dictionary.Add(60, 200);
dictionary.Add(120, 100);
dictionary.Add(240, 50);
dictionary.Add(600, 20);
dictionary.Add(1200, 10);
dictionary.Add(2400, 5);
dictionary.Add(6000, 2);
dictionary.Add(12000, 1);

givenValue = 1;

所以我想找出哪个键最接近1。我需要返回键值对,所以它应该返回[2.4, 5000]。

最佳答案

好吧,您可能会问自己字典是否是解决这些类型问题的正确结构,但假设这是给定的(以解决其他问题),您可以执行以下操作:

var bestMatch = dictionary.OrderBy(e => Math.Abs(e.Key - givenValue)).FirstOrDefault();

如果您需要执行许多此类查询,这将是非常低效的。

下面的效率更高一点:

Tuple<double, KeyValuePair<double, int>> bestMatch = null;
foreach (var e in dictionary)
{
var dif = Math.Abs(e.Key - givenValue);
if (bestMatch == null || dif < bestMatch.Item1)
bestMatch = Tuple.Create(dif, e);
}

关于c# - 在字典中查找最接近给定值的值 C#,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28664898/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com