I have a List<DateTime> dates;
I have a class that has:
class NonWorkingDay
{
public DateTime Start;
public int Days;
}
I am trying to figure out a clean way to group them.
public List<NonWorkingDay> GetContiguousDates(List<DateTime> dates)
{
}
Note: if there is an NWD on Friday and the next is Monday they should be grouped. Weekends are not considered.
For example if I have
September 3 2013
September 20 2013
September 23 2013
September 24 2013
September 30 2013
October 1 2013
The output would be:
Start = September 3 2013, Days = 1
Start = September 20 2013, Days = 3 //weekend got skipped
Start = September 30 2013, Days = 2
Is there any way to do this (without have a bunch of counter variables) and using .Select or .Where or something.
Thanks
So, we'll start out with this generic iterator function. It takes a sequence and a predicate that accepts two items and returns a boolean. It will read in items from the source and while an item, along with it's previous item, returns true based on the predicate, that next item will be in the "next group". If it returns false, the previous group is full and the next group is started.
We'll also need this simple helper method that gets the next working day based on a date. If you want to incorporate holidays as well it goes from trivial to quite hard, but that's where the logic would go.
Now to put it all together. First we order the days. (If you ensure they always come in ordered you can remove that part.) Then we group the consecutive items while each item is the next work day of the previous.
Then all we need to do is turn an
IEnumerable<DateTime>
of consecutive dates into aNonWorkingDay
. For that the start date is the first date, andDays
is the count of the sequence. While normally using bothFirst
andCount
would iterate the source sequence twice, we happen to know that the sequence returned byGroupWhile
is actually aList
under the hood, so iterating it multiple times is not a problem, and getting theCount
is even O(1).