>如果所有列表项都相同,即.相同的月份和年份很简单
>如果按月和按年顺序排列.
例:
10/4/2016 10/3/2016 10/2/2016 10/1/2016 10/12/2015
在上面,Month和Year按顺序排列,因此该方法返回true.
3.如果列表按顺序有多个月份
例:
10/2/2016 10/1/2016 10/12/201510/2/2016 10/1/2016 10/12/201510/2/2016 10/1/2016 10/12/2015
在上面的列表中,它有三个连续月份12 / 2015,1 / 2016,2 / 2016.因此,对于上面的列表,它应该返回true.即使一个月不按顺序,它也应该返回false
我能够为第二个条件编写一个方法,其中dd / yyyy应该按顺序使用以下方法
for (var x = 1; x < terms.Count; ++x) { var d1 = terms[x - 1]; var d2 = terms[x]; if (d2.Year == d1.Year) { if ((d1.Month - d2.Month) != 1) return false; continue; } if ((d1.Year - d2.Year) != 1) return false; if (d1.Month != 1 || d2.Month != 12) return false; } return true;
有没有类似的方法来检查第三个条件?
解决方法 我不会使用月份和年份,但考虑增加时间.DateTime currentDateTime;foreach(var d in terms){ if(currentDateTime == default(DateTime)) { currentDateTime = d; } else { currentDateTime = currentDateTime.AddMonths(1); if(currentDateTime != d) return false; }}return true;
对于重复相同的序列(这次是伪代码):
// Determine initial sequencewhile(currentDateTime.AddMonths(1) == nextDateTime) count++;// Make sure that the whole sequence is a multiple of the short sequenceif(totalLength % count != 0) return false;// Check remaining sequencesfor(iteration in 1 .. totalLength / count) for(index in 1 .. count) if(terms[index] != terms[count * iteration + index]) return false;// No elements differedreturn true;总结
以上是内存溢出为你收集整理的c# – 如果列表包含多个连续月份条带,则返回true全部内容,希望文章能够帮你解决c# – 如果列表包含多个连续月份条带,则返回true所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)