gpt4 book ai didi

c# - 使用缺失日期 LINQ 填充列表

转载 作者:行者123 更新时间:2023-12-05 03:14:22 25 4
gpt4 key购买 nike

我有以下对象列表

List < Percentages > 包含值的 MyList

            date    high    low      avg
2014-08-21 16:15:00 20 10 22.5
2014-08-21 16:12:00 21 11 02
2014-08-21 16:09:00 25 12 23
2014-08-21 16:08:00 23 16 22
2014-08-21 16:07:00 19 09 21
2014-08-21 16:04:00 35 20 21.5
2014-08-21 16:03:00 45 25 19.5
2014-08-21 16:00:00 64 20 33.5
2014-08-21 15:56:00 32 25 27.5

public class Percentages
{
public DateTime Date { get; set; }
public decimal High { get; set; }
public decimal Low { get; set; }
public decimal Average { get; set; }
}

可以看出,该列表缺少一些分钟数。我的目标是添加缺失的分钟以列出上一个日期的值。像这样的东西:

            date    high    low      avg
2014-08-21 16:15:00 20 10 22.5
2014-08-21 16:14:00 21 11 02
2014-08-21 16:13:00 21 11 02
2014-08-21 16:12:00 21 11 02
2014-08-21 16:11:00 25 12 23
2014-08-21 16:10:00 25 12 23
2014-08-21 16:09:00 25 12 23
2014-08-21 16:08:00 23 16 22
2014-08-21 16:07:00 19 09 21
2014-08-21 16:06:00 35 20 21.5
2014-08-21 16:05:00 35 20 21.5
2014-08-21 16:04:00 35 20 21.5
2014-08-21 16:03:00 45 25 19.5
2014-08-21 16:02:00 64 20 33.5
2014-08-21 16:01:00 64 20 33.5
2014-08-21 16:00:00 64 20 33.5
2014-08-21 15:59:00 32 25 27.5
2014-08-21 15:58:00 32 25 27.5
2014-08-21 15:57:00 32 25 27.5
2014-08-21 15:56:00 32 25 27.5

我做了类似的事情(见下文),但它似乎有点棘手,可能使用 LINQ 会更容易:

Mylist < Percentages > = ....
List< Percentages > tempList = new List <Percentages >
for (int j = tempList.Count - 1; j> 0; j--)
{
if ( (tempList[j-1].Date - tempList[j].Date).TotalMinutes >1)
{
candles.Add(Mylist[j]);
}
}

最佳答案

这应该可行,因为您要求我已经使用了 LINQ。一般来说,您的要求在很大程度上取决于连续的元素,这通常表明您应该使用普通循环而不是 LINQ。

// ensure that it's sorted by date
percentages.Sort((p1, p2) => p1.Date.CompareTo(p2.Date));
List<Percentages> newPercentages = new List<Percentages>();
foreach (Percentages percentage in percentages)
{
Percentages lastPercentage = newPercentages.LastOrDefault();
if (lastPercentage != null)
{
TimeSpan diff = percentage.Date - lastPercentage.Date;
int missingMinutes = (int)diff.TotalMinutes - 1;
if(missingMinutes > 0)
{
var missing = Enumerable.Range(1, missingMinutes)
.Select(n => new Percentages
{
Date = lastPercentage.Date.AddMinutes(n),
Average = lastPercentage.Average,
High = lastPercentage.High,
Low = lastPercentage.Low
});
newPercentages.AddRange(missing);
}
}
newPercentages.Add(percentage);
}

关于c# - 使用缺失日期 LINQ 填充列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25428689/

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