Data structure for non-overlapping ranges within a single dimension - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T04:59:42Zhttp://stackoverflow.com/feeds/question/210729http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/210729/data-structure-for-non-overlapping-ranges-within-a-single-dimension2Data structure for non-overlapping ranges within a single dimensionSteve Kuo2008-10-17T00:21:11Z2009-04-19T13:35:17Z
<p>I need a data structure that can store non-overlapping ranges within a single dimension. The entire range of the dimension need not be completely covered.</p>
<p>An example would be a conference room scheduler. The dimension is time. No two schedules may overlap. The conference room isn't always scheduled. In other words, for a given time there can be at most one schedule.</p>
<p>A quick solution is for a range to store the start and end times.</p>
<pre><code>Range {
Date start
Date end
}
</code></pre>
<p>This is non-normalized and requires the container to enforce no overlapping. For two adjacent ranges, the previous' end will be redundant with the next's start.</p>
<p>Another scheme might involve storing one boundary value with each range. But for a contiguous sequence of ranges, there will always be one more boundary values than ranges. To get around this the sequence could be represented as alternating boundary values and ranges:</p>
<p>B = boundary value, r = range</p>
<blockquote>
<p>B-r-B-r-B</p>
</blockquote>
<p>The data structure might look like:</p>
<pre><code>Boundary {
Date value
Range prev
Range next
}
Range {
Boundary start
Boundary end
}
</code></pre>
<p>In essence it's a doubly linked list with alternating types.</p>
<p>Ultimately, whatever data structure I use will be represented in both memory (application code) and a relational database.</p>
<p>I'm curious what academic or industry tried solutions exists.</p>
http://stackoverflow.com/questions/210729/data-structure-for-non-overlapping-ranges-within-a-single-dimension/210750#2107500Answer by Sklivvz for Data structure for non-overlapping ranges within a single dimensionSklivvz2008-10-17T00:32:10Z2008-10-17T00:32:10Z<p>The <em>normalized</em> way to represent your data would be to store a record for each unit of time. This can be done in the example of the conference scheduling application. Your constraint would be a unique constraint for </p>
<pre><code>(RoomId, StartTime)
</code></pre>
<p>In the case of continuous ranges, you necessarily need to store 2 things, one boundary and either the second boundary or the length. It is usually done by storing the second boundary and then creating a constraint on both boundary of the kind </p>
<pre><code>(boundary not between colBoudaryA and colBoundaryB)
</code></pre>
<p>with the additional constraint that </p>
<pre><code>(startBoundary < endBoundary)
</code></pre>
http://stackoverflow.com/questions/210729/data-structure-for-non-overlapping-ranges-within-a-single-dimension/210752#2107521Answer by Adam Davis for Data structure for non-overlapping ranges within a single dimensionAdam Davis2008-10-17T00:33:46Z2008-10-17T00:33:46Z<p>A doubly linked list works well because you only use as much memory as you have filled ranges, and you need only check overlapping on insertions - it's almost trivial to do so at that point. If there's overlap the new item is rejected.</p>
<pre>
RoomID
ReservationID
PreviousReservationID
NextReservationID
StartTimeDate
EndTimeDate
Priority
UserID
</pre>
<p>The priority and UserID allow for schedules to have priorities (professor might have more clout than a student group) so that a new item can 'knock' the lower priority items out of the way during an insertion, and the UserID allows an email to be sent to the bumped meeting organizers.</p>
<p>You'll want to consider adding a table that points to the first meeting of each day so that searches can be optimized.</p>
<p>-Adam</p>
http://stackoverflow.com/questions/210729/data-structure-for-non-overlapping-ranges-within-a-single-dimension/210753#2107530Answer by stevemegson for Data structure for non-overlapping ranges within a single dimensionstevemegson2008-10-17T00:34:03Z2008-10-17T00:34:03Z<p>A lot depends on what you'll be doing with the data, and therefore which operations need to be efficient. However, I'd consider a doubly linked list of Ranges with logic in the setters of Start and End to check whether it now overlaps its neighbours, and to shrink them if so (or throw an exception, or however you want to handle an attempted overlap).</p>
<p>That gives a nice simple linked list of booked periods to read, but no container responsible for maintaining the no-overlap rule.</p>
http://stackoverflow.com/questions/210729/data-structure-for-non-overlapping-ranges-within-a-single-dimension/210823#2108230Answer by David Nehme for Data structure for non-overlapping ranges within a single dimensionDavid Nehme2008-10-17T01:21:36Z2008-10-17T01:21:36Z<p>This is called the "Unary Resource" constraint in the <a href="http://en.wikipedia.org/wiki/Constraint_programming" rel="nofollow">Constraint Programming</a> world. There is a lot of research in this area, specifically for the case when the event times aren't fixed, and you need to find time-slots for each of them.
There is a commercial C++ package that does your problem and more <a href="http://www.ilog.com/products/cp/" rel="nofollow">Ilog CP</a>, but it is likely overkill. There is also a somewhat open-source version called <a href="http://87.230.22.228/" rel="nofollow">eclipse</a> (no relation to the IDE).</p>
http://stackoverflow.com/questions/210729/data-structure-for-non-overlapping-ranges-within-a-single-dimension/211031#2110310Answer by Jonathan Leffler for Data structure for non-overlapping ranges within a single dimensionJonathan Leffler2008-10-17T03:51:33Z2009-04-19T13:20:25Z<p>This is non-trivial because (in the database world) you have to compare multiple rows to determine non-overlapping ranges. Clearly, when the information is in memory, then other representations such as lists in time order are possible. I think, though, that you'd be best off with your 'start + end' notation, even in a list.</p>
<p>There are whole books on the subject - part of 'Temporal Database' handling. Two you could look at are Darwen, Date and Lorentzos "<a href="http://www.amazon.com/Temporal-Relational-Model-Darwen-Lorentzos/dp/B001E4587Q" rel="nofollow">Temporal Data and the Relational Model</a>" and (at a radically different extreme) "<a href="http://rads.stackoverflow.com/amzn/click/1558604367" rel="nofollow">Developing Time-Oriented Database Applications in SQL</a>", Richard T. Snodgrass, Morgan Kaufmann Publishers, Inc., San Francisco, July, 1999, 504+xxiii pages, ISBN 1-55860-436-7. That is out of print but available as PDF on his web site at <a href="http://www.cs.arizona.edu/~rts/publications.html" rel="nofollow">cs.arizona.edu</a> (so a Google search makes it pretty easy to find).</p>
<p>One of the relevant data structures is, I believe, an <a href="http://en.wikipedia.org/wiki/R-tree" rel="nofollow">R-Tree</a>. That is often used for 2-dimensional structures, but can also be effective for 1-dimensional structures.</p>
<p>You can also look for "<a href="http://en.wikipedia.org/wiki/Allen%27s%5FInterval%5FAlgebra" rel="nofollow">Allen's Relations</a>" for intervals - they may be helpful to you. </p>
http://stackoverflow.com/questions/210729/data-structure-for-non-overlapping-ranges-within-a-single-dimension/765420#7654200Answer by le dorfier for Data structure for non-overlapping ranges within a single dimensionle dorfier2009-04-19T13:35:17Z2009-04-19T13:35:17Z<p>I've had success storing a beginning time and duration. The test for overlap would be something like</p>
<p>WHERE NOT EXISTS (SELECT 1 FROM table WHERE BeginTime < NewBeginTime AND BeginTime + Duration > NewBeginTime)<br />
AND NOT EXISTS (SELECT 1 FROM table WHERE NewBeginTime < BeginTime AND NewBeginTime + NewDuration > BeginTime)</p>
<p><></p>