Building a "complete" number range w/out overlaps - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T12:29:47Zhttp://stackoverflow.com/feeds/question/566574http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/566574/building-a-complete-number-range-w-out-overlaps0Building a "complete" number range w/out overlapsJohn2009-02-19T18:33:44Z2009-02-26T13:08:18Z
<p>Hey,</p>
<p>I need to build a full "number range" set given a series of numbers. I start with a list such as :</p>
<pre><code>ID START
* 0
a 4
b 70
c 700
d 701
e 85
</code></pre>
<ul>
<li>where "def" is the default range & should "fill-in" the gaps </li>
<li>"overlaps" are value (70, 700, 701) in starting data</li>
</ul>
<p>And need the following result: </p>
<pre><code>ID START END
* 0 - 39
a 4 - 49
* 5 - 69
c 700 - 7009
d 701 - 7019
b 702 - 709
* 71 - 849
e 85 - 859
* 86 - 9
</code></pre>
<p>What I am trying to figure out is if there is some sort of algorithm out there or design pattern to tackle this. I have some ideas but I thought I'd run it by the "experts" first. I am using Python. </p>
<p>Any ideas / direction would be greatly appreciated. Some initial ideas I have: </p>
<ul>
<li>Build a "range" list w/ the start & end values padded to the full length. So default would be 0000 to 9999</li>
<li>Build a "splits" list that is built on the fly</li>
<li>Loop through "range" list comparing each value to the values in the splits list.</li>
<li>In the event that an overlap is found, remove the value in the splits list and add the new range(s).</li>
</ul>
http://stackoverflow.com/questions/566574/building-a-complete-number-range-w-out-overlaps/566703#5667030Answer by nosklo for Building a "complete" number range w/out overlapsnosklo2009-02-19T19:05:03Z2009-02-26T13:08:18Z<pre><code>import operator
ranges = {
'4' : 'a',
'70' : 'b',
'700': 'c',
'701': 'd',
'85' : 'e',
'87' : 'a',
}
def id_for_value(value):
possible = '*'
for idvalue, id in sorted(ranges.iteritems()):
if value.startswith(idvalue):
possible = id
elif idvalue > value:
break
return possible
</code></pre>
<p>That is enough to know the id of a certain value. Testing:</p>
<pre><code>assert id_for_value('10') == '*'
assert id_for_value('499') == 'a'
assert id_for_value('703') == 'b'
assert id_for_value('7007') == 'c'
assert id_for_value('7017') == 'd'
assert id_for_value('76') == id_for_value('83') == '*'
assert id_for_value('857') == 'e'
assert id_for_value('8716') == 'a'
</code></pre>
<p>If you really want the range, you can use itertools.groupby to calculate it:</p>
<pre><code>def firstlast(iterator):
""" Returns the first and last value of an iterator"""
first = last = iterator.next()
for value in iterator:
last = value
return first, last
maxlen = max(len(x) for x in ranges) + 1
test_range = ('%0*d' % (maxlen, i) for i in xrange(10 ** maxlen))
result = dict((firstlast(gr), id)
for id, gr in itertools.groupby(test_range, key=id_for_value))
</code></pre>
<p>Gives:</p>
<pre><code>{('0000', '3999'): '*',
('4000', '4999'): 'a',
('5000', '6999'): '*',
('7000', '7009'): 'c',
('7010', '7019'): 'd',
('7020', '7099'): 'b',
('7100', '8499'): '*',
('8500', '8599'): 'e',
('8600', '8699'): '*',
('8700', '8799'): 'a',
('8800', '9999'): '*'}
</code></pre>