gpt4 book ai didi

c# - 如何在 C# 中使用 LINQ 根据值 (DateTime) 删除一半的字典项?

转载 作者:行者123 更新时间:2023-11-30 20:03:24 26 4
gpt4 key购买 nike

我有一本字典:

private Dictionary<long, TimeStampedFetchedPlans> remainingPlansById = null;

在哪里

public class TimeStampedFetchedPlans
{
public DateTime TimeStamp { get; set; }
public List<TFetchedPlanReturn> RemainingPlans { get; set; }

public TimeStampedFetchedPlans(DateTime timeStamp, List<TFetchedPlanReturn> remainingPlans)
{
TimeStamp = timeStamp;
RemainingPlans = remainingPlans;
}
}

现在我想使用 LINQ 删除 Dictionary 中最旧的一半值。这能做到吗?

最佳答案

您可以通过创建一个新实例完全使用 LINQ 来完成:

remainingPlansById = remainingPlansById.OrderByDescending(x => x.Value.TimeStamp)
.Take(remainingPlansById.Count / 2)
.ToDictionary(x => x.Key, x => x.Value);

但是,使用循环不需要创建新字典:

var itemsToRemove = remainingPlansById.OrderBy(x => x.Value.TimeStamp)
.Take(remainingPlansById.Count / 2)
.ToList();

foreach(var itemToRemove in itemsToRemove)
remainingPlansById.Remove(itemToRemove.Key);

请注意,对于奇数项,两个版本的行为不同。对于字典中的 41 个项目,第一个版本将保留 20 个并删除 21,而第二个版本将删除 20 个并保留 21. 每个版本都可以轻松更改为另一个版本,您只需要决定您真正想要的行为。

关于c# - 如何在 C# 中使用 LINQ 根据值 (DateTime) 删除一半的字典项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15085419/

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