我怎样才能进行“分组依据”?与 Dictionary 对象?

发布于 2024-10-21 20:31:11 字数 370 浏览 2 评论 0原文

在 C# 中,我有一个 Dictionary 对象,它存储一个整数值和一个十进制值。

Dictionary<decimal,int> objDict = new Dictionary<decimal,int>();

这些值是

   12  1
   23  1
   14  1
   6   2
   9   2
   16  3
   -4  3

我想使用 LINQ 对此进行分组,以便获得最大值。预期输出是

   23  1
    9  2
   16  3

How to do that?

In C#, I have a Dictionary object which stores one integer value and one decimal value.

Dictionary<decimal,int> objDict = new Dictionary<decimal,int>();

and the values are

   12  1
   23  1
   14  1
   6   2
   9   2
   16  3
   -4  3

I want to do a group by on this using LINQ, so that I will get the max value. The expected output is

   23  1
    9  2
   16  3

How to do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

鹿童谣 2024-10-28 20:31:11
var query = yourDictionary.GroupBy(x => x.Value,
                                   (k, g) => new {
                                                     Max = g.Max(x => x.Key),
                                                     Value = k
                                                 });
var query = yourDictionary.GroupBy(x => x.Value,
                                   (k, g) => new {
                                                     Max = g.Max(x => x.Key),
                                                     Value = k
                                                 });
绳情 2024-10-28 20:31:11
var itemCount2NumberMap = yourDictionary.GroupBy(item=>item.Value).ToDictionary(x=>x.Key, x=>x.Max(y=>y.Key));
var itemCount2NumberMap = yourDictionary.GroupBy(item=>item.Value).ToDictionary(x=>x.Key, x=>x.Max(y=>y.Key));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文