vote up 7 vote down star
6

Given two date ranges, what is the simplest or most efficient way to determine whether the two date ranges overlap?

As an example, suppose we have ranges denoted by DateTime variables StartDate1 to EndDate1 and StartDate2 to EndDate2.

flag

Define "overlap". – Tomalak Nov 28 '08 at 14:52
Extremely similar to stackoverflow.com/questions/306316/… – Charles Bretana Nov 28 '08 at 14:54
@CharlesBretana thanks for that, you're right - that's almost like a two-dimensional version of my question! – Ian Nelson Nov 28 '08 at 14:57
very similar to stackoverflow.com/questions/117962/… – Steven A. Lowe Nov 28 '08 at 16:35

6 Answers

vote up 23 vote down check

Let CondA Mean DateRange A Completely After DateRange B (True if StartA > EndB)

Let CondB Mean DateRange A Completely Before DateRange B (True if EndA < StartB)

Then Overlap exists if Neither A Nor B is true ( If one range is neither completely after the other, nor completely before the other, then they must overlap)

Now deMorgan's law, I think it is, says that

Not (A Or B)  <=>  Not A And Not B

Which means (StartA <= EndB) And (EndA >= StartB)

NOTE: This includes conditions where the edges overlap exactly. If you wish to exclude that, change the [>=] operators to [>], and [<=] to [<]

link|flag
Excellent rigorous explanation. Thanks. – Ian Nelson Nov 28 '08 at 15:04
Edited to fix typo... Mixed up As and Bs ! – Charles Bretana Nov 28 '08 at 15:05
Thank you! Its much easier to indicate what NOT to accept versus what to accept. – Soviut Apr 8 at 18:39
Thank you, that's the best explanation I've found. – Evgeny Sep 22 at 6:43
vote up 0 vote down

Here is a generic method that can be usefull locally.

    // Takes a list and returns all records that have overlapping time ranges.
    public static IEnumerable<T> GetOverlappedTimes<T>(IEnumerable<T> list, Func<T, bool> filter, Func<T,DateTime> start, Func<T, DateTime> end)
    {
        // Selects all records that match filter() on left side and returns all records on right side that overlap.
        var overlap = from t1 in list
                      where filter(t1)
                      from t2 in list
                      where !object.Equals(t1, t2) // Don't match the same record on right side.
                      let in1 = start(t1)
                      let out1 = end(t1)
                      let in2 = start(t2)
                      let out2 = end(t2)
                      where in1 <= out2 && out1 >= in2
                      let totover = GetMins(in1, out1, in2, out2)
                      select t2;

        return overlap;
    }

    public static void TestOverlap()
    {
        var tl1 = new TempTimeEntry() { ID = 1, Name = "Bill", In = "1/1/08 1:00pm".ToDate(), Out = "1/1/08 4:00pm".ToDate() };
        var tl2 = new TempTimeEntry() { ID = 2, Name = "John", In = "1/1/08 5:00pm".ToDate(), Out = "1/1/08 6:00pm".ToDate() };
        var tl3 = new TempTimeEntry() { ID = 3, Name = "Lisa", In = "1/1/08 7:00pm".ToDate(), Out = "1/1/08 9:00pm".ToDate() };
        var tl4 = new TempTimeEntry() { ID = 4, Name = "Joe", In = "1/1/08 3:00pm".ToDate(), Out = "1/1/08 8:00pm".ToDate() };
        var tl5 = new TempTimeEntry() { ID = 1, Name = "Bill", In = "1/1/08 8:01pm".ToDate(), Out = "1/1/08 8:00pm".ToDate() };
        var list = new List<TempTimeEntry>() { tl1, tl2, tl3, tl4, tl5 };
        var overlap = GetOverlappedTimes(list, (TempTimeEntry t1)=>t1.ID==1, (TempTimeEntry tIn) => tIn.In, (TempTimeEntry tOut) => tOut.Out);

        Console.WriteLine("\nRecords overlap:");
        foreach (var tl in overlap)
            Console.WriteLine("Name:{0} T1In:{1} T1Out:{2}", tl.Name, tl.In, tl.Out);
        Console.WriteLine("Done");

        /*  Output:
            Records overlap:
            Name:Joe T1In:1/1/2008 3:00:00 PM T1Out:1/1/2008 8:00:00 PM
            Name:Lisa T1In:1/1/2008 7:00:00 PM T1Out:1/1/2008 9:00:00 PM
            Done
         */
    }
link|flag
vote up 2 vote down

For reasoning about temporal relations (or any other interval relations, come to that), consider Allen's Interval Algebra. It describes the 13 possible relations that two intervals can have with respect to each other. You can find other references - "Allen's Interval" seem to be the operative search terms. You can also find information about these operations in Snodgrass's "Developing Time-Oriented Applications in SQL" (PDF available online at URL), and in Date, Darwen and Lorentzos "Temporal Data and the Relational Model" (see Amazon.com, etc).

link|flag
vote up 0 vote down

The easiest way to do it in my opinion would be to compare if either EndDate1 is before StartDate2 or EndDate2 is before StartDate1.

That of course if you are considering intervals in the future and not the past ( StartDate always before EndDate)

link|flag
vote up 1 vote down

I woud do

StartDate1.IsBetween(StartDate2, EndDate2) || EndDate1.IsBetween(StartDate2, EndDate2)

Where IsBetween is something like

	public static bool IsBetween(this DateTime value, DateTime left, DateTime right) {
		return (value > left && value < right) || (value < left && value > right);
	}
link|flag
I would prefer (left < value && value < right) || (right < value && value < left) for this method. – Patrick Huizinga Nov 28 '08 at 15:22
Thanks for this. Makes things easier in my head. – sshow Nov 10 at 15:05
vote up 6 vote down

I believe that it is sufficient to say that the two ranges overlap if:

(StartDate1 <= EndDate2) and (StartDate2 <= EndDate1)
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.