如何在 C# 中使用 Enumarable 反转一系列元素?

发布于 2024-09-30 23:44:05 字数 1234 浏览 1 评论 0原文

我有两个整数变量,例如

int Max = 10;
int limit = 5;

一个字典,

Dictionary<String , String> MyDict = new Dictionary<string,string>();

我需要用 Max 元素填充字典,如果索引大于或等于 limit ,则该值应该为无。

这是我的示例代码,它将清除我的问题

int j = 1;
for (int i = Max-1; i >= 0; i--)
{
    if (i >= limit)
        MyDict.Add((j++).ToString(), "None");
    else
        MyDict.Add((j++).ToString(), i.ToString());
}

,因此结果将类似于

{ "1" "None" }   
{ "2" "None" }   
{ "3" "None" }    
{ "4" "None" }
{ "5" "None" }
{ "6" "4" }
{ "7" "3" }
{ "8" "2" }
{ "9" "1" }
{ "10" "0" }

如何使用 LINQLAMBDA Expression 执行此操作,

相反可以使用 Enumarable< /code> 这里是

MyDict  = Enumerable.Range(0, Max)
                    .ToDictionary(X => (X + 1).ToString(), X => X >= limit ? "None" : X.ToString());

这个表达式的输出

{ "1" "0" }
{ "2" "1" }
{ "3" "2" }
{ "4" "3" }
{ "5" "4" }
{ "6" "None" }
{ "7" "None" }
{ "8" "None" }
{ "9" "None" }
{ "10" "None" }

但是如何做相反的事情(就像 for 循环的输出)?或者如何修改现有的LINQ

提前致谢。

I have two Integer variables like

int Max = 10;
int limit = 5;

and a Dictionary

Dictionary<String , String> MyDict = new Dictionary<string,string>();

I need to fill the dictionary with Max elements and if the index is greater than or equal to limit then the value should be none.

Here is my sample code which will clear my question

int j = 1;
for (int i = Max-1; i >= 0; i--)
{
    if (i >= limit)
        MyDict.Add((j++).ToString(), "None");
    else
        MyDict.Add((j++).ToString(), i.ToString());
}

so the result will be like

{ "1" "None" }   
{ "2" "None" }   
{ "3" "None" }    
{ "4" "None" }
{ "5" "None" }
{ "6" "4" }
{ "7" "3" }
{ "8" "2" }
{ "9" "1" }
{ "10" "0" }

How to do this using LINQ or LAMBDA Expression

The reverse can be done using Enumarable here it is

MyDict  = Enumerable.Range(0, Max)
                    .ToDictionary(X => (X + 1).ToString(), X => X >= limit ? "None" : X.ToString());

Output of this expression

{ "1" "0" }
{ "2" "1" }
{ "3" "2" }
{ "4" "3" }
{ "5" "4" }
{ "6" "None" }
{ "7" "None" }
{ "8" "None" }
{ "9" "None" }
{ "10" "None" }

But how to do the reverse of this (like the output of the for loop)? Or how can I modify the existing LINQ?

Thanks in advance.

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

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

发布评论

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

评论(1

无声静候 2024-10-07 23:44:05
Enumerable.Range(0, Max).OrderByDescending(x => x).ToDictionary(x => (Max - x).ToString(), x => x >= limit ? "None" : x.ToString());
Enumerable.Range(0, Max).OrderByDescending(x => x).ToDictionary(x => (Max - x).ToString(), x => x >= limit ? "None" : x.ToString());
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文