How to divide a set of overlapping ranges into non-overlapping ranges? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T17:43:37Z http://stackoverflow.com/feeds/question/628837 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/628837/how-to-divide-a-set-of-overlapping-ranges-into-non-overlapping-ranges 3 How to divide a set of overlapping ranges into non-overlapping ranges? Ron Eggbertson 2009-03-10T03:21:07Z 2009-03-10T04:07:40Z <p>Let's say you have a set of ranges:</p> <ul> <li>0 - 100: 'a'</li> <li>0 - 75: 'b'</li> <li>95 - 150: 'c'</li> <li>120 - 130: 'd'</li> </ul> <p>Obviously, these ranges overlap at certain points. How would you dissect these ranges to produce a list of non-overlapping ranges, while retaining information associated with their original range (in this case, the letter after the range)?</p> <p>For example, the results of the above after running the algorithm would be:</p> <ul> <li>0 - 75: 'a', 'b'</li> <li>76 - 94: 'a'</li> <li>95 - 100: 'a', 'c'</li> <li>101 - 119: 'c'</li> <li>120 - 130: 'c', 'd'</li> <li>131 - 150: 'c'</li> </ul> http://stackoverflow.com/questions/628837/how-to-divide-a-set-of-overlapping-ranges-into-non-overlapping-ranges/628849#628849 0 Answer by David for How to divide a set of overlapping ranges into non-overlapping ranges? David 2009-03-10T03:25:59Z 2009-03-10T03:41:54Z <p>I'd say create a list of the endpoints and sort it, also index the list of ranges by starting and ending points. Then iterate through the list of sorted endpoints, and for each one, check the ranges to see which ones are starting/stopping at that point.</p> <p>This is probably better represented in code... if your ranges are represented by tuples:</p> <pre><code>ranges = [(0,100,'a'),(0,75,'b'),(95,150,'c'),(120,130,'d')] endpoints = sorted(list(set([r[0] for r in ranges] + [r[1] for r in ranges]))) start = {} end = {} for e in endpoints: start[e] = set() end[e] = set() for r in ranges: start[r[0]].add(r[2]) end[r[1]].add(r[2]) current_ranges = set() for e1, e2 in zip(endpoints[:-1], endpoints[1:]): current_ranges.difference_update(end[e1]) current_ranges.update(start[e1]) print '%d - %d: %s' % (e1, e2, ','.join(current_ranges)) </code></pre> <p>Although looking at this in retrospect, I'd be surprised if there wasn't a more efficient (or at least cleaner-looking) way to do it.</p> http://stackoverflow.com/questions/628837/how-to-divide-a-set-of-overlapping-ranges-into-non-overlapping-ranges/628859#628859 6 Answer by Edmund for How to divide a set of overlapping ranges into non-overlapping ranges? Edmund 2009-03-10T03:32:48Z 2009-03-10T04:06:16Z <p>I had the same question when writing a program to mix (partly overlapping) audio samples.</p> <p>What I did was add an "start event" and "stop event" (for each item) to a list, sort the list by time point, and then process it in order. You could do the same, except using an integer point instead of a time, and instead of mixing sounds you'd be adding symbols to the set corresponding to a range. Whether you'd generate empty ranges or just omit them would be optional.</p> <p><code>Edit</code> Perhaps some code...</p> <pre><code># input = list of (start, stop, symbol) tuples points = [] # list of (offset, plus/minus, symbol) tuples for start,stop,symbol in input: points.append((start,'+',symbol)) points.append((stop,'-',symbol)) points.sort() ranges = [] # output list of (start, stop, symbol_set) tuples current_set = set() last_start = None for offset,pm,symbol in points: if pm == '+': if last_start is not None: #TODO avoid outputting empty or trivial ranges ranges.append((last_start,offset-1,current_set)) current_set.add(symbol) last_start = offset elif pm == '-': # Getting a minus without a last_start is unpossible here, so not handled ranges.append((last_start,offset-1,current_set)) current_set.remove(symbol) last_start = offset # Finish off if last_start is not None: ranges.append((last_start,offset-1,current_set)) </code></pre> <p>Totally untested, obviously.</p> http://stackoverflow.com/questions/628837/how-to-divide-a-set-of-overlapping-ranges-into-non-overlapping-ranges/628899#628899 0 Answer by Kevin Conner for How to divide a set of overlapping ranges into non-overlapping ranges? Kevin Conner 2009-03-10T04:01:29Z 2009-03-10T04:01:29Z <p>Pseudocode:</p> <pre><code>unusedRanges = [ (each of your ranges) ] rangesInUse = [] usedRanges = [] beginningBoundary = nil boundaries = [ list of all your ranges' start and end values, sorted ] resultRanges = [] for (boundary in boundaries) { rangesStarting = [] rangesEnding = [] // determine which ranges begin at this boundary for (range in unusedRanges) { if (range.begin == boundary) { rangesStarting.add(range) } } // if there are any new ones, start a new range if (rangesStarting isn't empty) { if (beginningBoundary isn't nil) { // add the range we just passed resultRanges.add(beginningBoundary, boundary - 1, [collected values from rangesInUse]) } // note that we are starting a new range beginningBoundary = boundary for (range in rangesStarting) { rangesInUse.add(range) unusedRanges.remove(range) } } // determine which ranges end at this boundary for (range in rangesInUse) { if (range.end == boundary) { rangesEnding.add(range) } } // if any boundaries are ending, stop the range if (rangesEnding isn't empty) { // add the range up to this boundary resultRanges.add(beginningBoundary, boundary, [collected values from rangesInUse] for (range in rangesEnding) { usedRanges.add(range) rangesInUse.remove(range) } if (rangesInUse isn't empty) { // some ranges didn't end; note that we are starting a new range beginningBoundary = boundary + 1 } else { beginningBoundary = nil } } } </code></pre> <p>Unit test:</p> <p>At the end, resultRanges should have the results you're looking for, unusedRanges and rangesInUse should be empty, beginningBoundary should be nil, and usedRanges should contain what unusedRanges used to contain (but sorted by range.end).</p> http://stackoverflow.com/questions/628837/how-to-divide-a-set-of-overlapping-ranges-into-non-overlapping-ranges/628906#628906 1 Answer by Kenneth Cochran for How to divide a set of overlapping ranges into non-overlapping ranges? Kenneth Cochran 2009-03-10T04:07:40Z 2009-03-10T04:07:40Z <p>What you describe is an example of set theory. For a general algorithm for computing unions, intersections, and differences of sets see:</p> <p><a href="http://www.gvu.gatech.edu/~jarek/graphics/papers/04PolygonBooleansMargalit.pdf" rel="nofollow">www.gvu.gatech.edu/~jarek/graphics/papers/04PolygonBooleansMargalit.pdf</a></p> <p>While the paper is targeted at graphics it is applicable to general set theory as well. Not exactly light reading material.</p>