- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我有一个 List<T>
一天 24 小时内的可用时间,以及两个 TimeSpans
, minTime 和 maxTime。
我需要在 List<T>
中找到一天中的某个时间落在 minTime
之间和 maxTime
,但是由于它在多个时区中使用,所以 minTime 和 maxTime 可以在不同的日子,并且跨越大约从下午 1 点到第二天凌晨 1 点
我最接近的是这个,但我觉得我在这里缺少一些主要组件,或者做一些非常低效的事情,因为我是 TimeSpan
的新手。目的。我就是想不通是什么……
// Make new TimeSpan out of maxTime to eliminate any extra days (TotalHours >= 24),
// then check if time on the MaxTime is earlier than the MinTime
if (new TimeSpan(maxTime.Hours, maxTime.Minutes, maxTime.Seconds) < minTime)
{
// If time on MaxTime is earlier than MinTime, the two times span separate days,
// so find first time after minTime OR before maxTime
nextAvailableTime = Times.FirstOrDefault(p =>
(p.Time.TimeOfDay >= minTime || (p.Time.TimeOfDay < maxTime))
&& p.Count < ConcurrentAppointments);
}
else
{
// If time on MaxTime is later than MinTime, the two times are for the same day
// so find first time after minTime AND before maxTime
nextAvailableTime = Times.FirstOrDefault(p =>
(p.Time.TimeOfDay >= minTime && p.Time.TimeOfDay < maxTime)
&& p.Count < ConcurrentAppointments);
}
列表Times
使用 EST(我的本地时间),但是 minTime
和 maxTime
可以基于其他时区。
例如,如果我们针对夏威夷时区运行此算法,我们最终会得到 minTime = new TimeSpan(13, 0, 0)
和 maxTime = new TimeSpan(25, 0, 0)
,从早上 8 点到晚上 8 点 HST = 下午 1 点到凌晨 1 点 EST。
Times
集合是 List<AppointmentTime>
, 和 AppointmentTime
是一个看起来像这样的类:
class AppointmentTime
{
DateTime Time { get; set; }
int Count { get; set; }
}
我很确定我在这里遗漏了一些重要的东西,或者应该有一种我不知道的更有效的方法来做到这一点,但我真的想不出它可能是什么。我的算法有问题吗?或者找到一个更有效的方法 TimeOfDay
两个之间TimeSpans
可能跨越不同的日子?
更新
我根据 CasperOne's answer 弄清楚了我遗漏了什么.我忘记了日期实际上很重要,因为我的时间跨越不同的时区。
使用我上面的夏威夷时区示例,在星期一安排约会会导致在星期天晚上错误地安排夏威夷约会。
我的解决方案是在为 24 小时工作日的“第一个窗口”安排约会之前检查前一天是否有效,并将约会日期调整为 .AddDays(maxTime.Days)
与 maxTime
比较时
// If time on MaxTime is earlier than MinTime, the two times span separate days,
// so find first time after minTime OR before maxTime if previous day has appointments set as well
var isPreviousDayValid = IsValidDate(AppointmentDate.AddDays(-1));
nextAvailableTime = Times.FirstOrDefault(p =>
(p.Time.TimeOfDay >= minTime
|| (p.Time.AddDays(maxTime.Days).TimeOfDay < maxTime && isPreviousDayValid)
) && p.Count < ConcurrentAppointments);
最佳答案
一般的想法是,不要比较时间,比较日期;将您的窗口从时间翻译成日期,剩下的就很容易了。
您可以生成一组新的 DateTime
使用 Date
property 比较列表中每个 项的实例以比较最小值和最大值作为计算您要比较的范围上限的基础。
这假设您的 minTime
总是小于 maxTime
,并且如果 your window covers more than one day您可以通过 Hours
property 来表示重叠到新一天的范围TimeSpan
上的值that is greater than 24 hours .
您必须查看前一天和后一天是否有一个窗口。例如:
(1) (2) (3) (4) (5)
----x----x----x----x----x----
(1) - 1/1/1900 11:00 PM - Date component in your list - 1 day + min time
(2) - 1/2/1900 12:05 AM - this is the date and time from your list
(3) - 1/2/1900 01:00 AM - Date component in your list - 1 day + max time
(4) - 1/2/1900 11:00 PM - Date component in your list + min time
(5) - 1/3/1900 01:00 AM - Date component in your list + max time
这意味着您需要创建两个窗口并检查您是否位于:
nextAvailableTime = Times.FirstOrDefault(p => {
// Check count first, get this out of the way.
if (!(p.Count < ConcurrentAppointments)) return false;
// The date time and the date component
DateTime dt = p.Time;
DateTime d = dt.Date;
// The windows
DateTime prevWindowMin = d.AddDays(-1) + minTime;
DateTime prevWindowMax = d.AddDays(-1) + maxTime;
DateTime windowMin = d + minTime;
DateTime windowMax = d + maxTime;
// Is it in *either* window;
return
(prevWindowMin <= dt && dt <= prevWindowMax)||
(windowMin <= dt && dt <= windowMax);
});
从您的问题中还不完全清楚,但是如果一天中的时间其他不是您列表中项目的 Date
组件,您可以替换 p.Time
用于 that 日期的 Date
组件(适当减去一天以创建窗口),它应该可以工作。
关于c# - 在这个算法中我缺少什么来找到两个可能跨越不同天数的 TimeSpans 之间的 TimeOfDay?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13885661/
我正在尝试在 map 上绘制一些疾病事件数据的位置。 我用它来导入数据: ByTown% addProviderTiles("CartoDB.Positron")%>% addPolygons
我有一个文件调用 find.js,我使用 node find.js 运行,我的节点是版本 10 我不知道为什么我无法使用 async await。 const axios = require("axi
我有一个项目作为引用添加到 System.Web。 但是,它似乎无法获取 HttpContext。这样做: Imports System.Web _ApplicationBase = HttpCont
在互联网上找到这段代码,出于某种原因它缺少 while 循环逻辑“while(i....)”,虽然我找到了 PigLatin* 问题的其他可行解决方案,但我真的很想了解这个正在工作。 *PigLati
我工作了一整天来运行 Xampp 并在其上安装 TYPO3。现在我登录到后端,但没有显示许多管理模块,例如模板、访问等。 - 一定是我做错了什么,但我不知道。 these are the module
你好 我有编译这个问题 \begin{equation} J = \sum_{j=1}^{C} \end{equation} 我不断收到错误 missing $ inserted 这很奇怪,因
我正在尝试使用 SQLite CLI,但无法获得 generate_series功能来工作。我可以按照文档中的建议使用递归 CTE 对其进行模拟,但我似乎无法获得该链接中的任何示例。这是我的 sess
我目前正在开发我想要的软件,而软件正在安装,它可以在后台为软件创建 native 图像。 我正在考虑使用 NGEN 并将进程优先级设置为低,因为我不希望它消耗 100% CPU。但是我发现我的计算机上
我想使用 Xcodes Instruments 进行 UI 自动化测试。但似乎缺少“自动化”。我怎样才能添加这个? 最佳答案 如果您想使用自动化仪器,请使用 Xcode 7.3。 Apple 在 Xc
我目前在 JS 开发中迈出了一小步,并编写了以下链接添加器: const button = document.getElementById('button') const listdiv = docu
此代码有什么问题: NSError *error = nil; [SFHFKeychainUtils deleteItemForUsername:@"IAPNoob01" andServiceName
出于某种原因,在安装和配置(我认为)一切之后,com.adobe.utils.AGALMiniAssembler 不见了,其他一切正常。 我认为我已尽一切努力让孵化器正常工作,但显然我错过了一步。 如
我有一个名为 new 的方法。调用 new 时,我传递了一个参数,但是当我运行应用程序时,出现没有参数或参数为空的错误。 StepReader.pm package StepReader; use s
安装 gtk 1.2(包名 gtk1)和 macports chokes 在最终的 make 中,在 libintl.h 的第 440 行。 extern locale_t libintl_newlo
我用按钮创建表格。 这是javascript代码: function layersListTable(layers) { var content =''; $.each($(layer
我在使用此 javascript 时遇到此错误,任何人都可以帮我弄清楚我做错了什么吗? $(this).prepend('Check availability »'); 它给我错误 mis
我有一个独立的工具链 NDK13b、api19、llvm 3.8 编译器、arm 32 位、带有 libcpp(llvm C++ 库) 我想避免依赖 libgcc,所以我构建了 compiler-rt
我按照一些教程使用 phonegap 的条形码扫描器插件。但是当我从现有源创建一个新的 android 项目来创建条码库时 (step 6 in this page)我收到错误:“AndroidMan
我现在尝试在 Eclipse 中打开我的布局 xml 文件。我只得到错误 No XML content. Please add a root view or layout to your docume
我的 android-sdk-windows\tools 目录中缺少层次结构查看器工具。 工具链接: http://developer.android.com/guide/developing/too
我是一名优秀的程序员,十分优秀!