检查DateTime对象列表是否一致
本文关键字:是否 列表 DateTime 对象 检查 | 更新日期: 2023-09-27 18:22:29
我有一个DateTime对象列表,需要检查它们是否是一个连贯的时间段。
这是怎么做到的?
我可能需要发现并采取行动的时间间隔。
编辑:从我所看到的,DateTime对象是排序的。我有一个TrackerObj类和Entry类,但相关的只是每个跟踪器持有的DateTime中的时间戳:
public class TrackerObj
{
private DateTime timeStamp;
private string trackerId;
private int voltage;
public TrackerObj(string trackerId, DateTime timeStamp, int voltage)
{
this.trackerId = trackerId;
this.timeStamp = timeStamp;
this.voltage = voltage;
}
}
这里唯一相关的是我所看到的数据中排序的时间戳。
编辑:列表是一个列表,该列表中的每个对象都包含一个DateTime时间戳。为了确定DateTime之间的时段是否"连贯"。
我对连贯时间的定义是:一段时间,每个时间戳在另一个时间戳之后,没有间隔(时间中断)。
DateTime格式:
mm-dd-yyyy hours:minutes:seconds
private bool arePeriodsCoherent(List<TrackerObj> list)
{
// determine if all the objects on this list are without gaps. Return true if this is true. else return false.
for(int i=0; i < list.Count; i++)
{
if(list[i].timeStamp > list[i + 1].timeStamp || list[i].timeStamp == list[i + 1].timeStamp)
{return false;}
else
{return true;}
}
}
可能的时间戳包含哪些变体?我上面的代码会不能捕捉到所有场景吗?
这将在一个连贯的时间段中找到任何端点:
private List<int> getTimeGapIndexEndPoints(double maxTimeGapSeconds)
{
int x = 1;
List<int> timeLapsIndexes = new List<int>();
for (int i = 0; i < trackerData[trackerId].currentList.Count(); i++)
{
if (x < trackerData[trackerId].currentList.Count())
{
DateTime t1 = trackerData[trackerId].currentList[i].TimeStamp;
DateTime t2 = trackerData[trackerId].currentList[x++].TimeStamp;
TimeSpan duration = t2.Subtract(t1);
if (duration.TotalSeconds > maxTimeGapSeconds)
{
// MessageBoxResult resultb = System.Windows.MessageBox.Show(this, "After index: "+i+" "+duration+" Duration for trackerId: " + trackerId + " exceed " + maxTimeGapSeconds);
timeLapsIndexes.Add(i);
}
}
}
return timeLapsIndexes;
//for (int j = 0; j < timeLapsIndexes.Count(); j++)
//{
// MessageBoxResult resultNumbers = System.Windows.MessageBox.Show(this, "After Index (i+1): " + timeLapsIndexes[j] + " for trackerId: " + trackerId);
//}
}
祝大家度过美好的一天。:)