Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Is a merge interval function available?

3 views
Skip to first unread message

Peng Yu

unread,
Feb 10, 2010, 6:23:42 PM2/10/10
to
I'm wondering there is already a function in python library that can
merge intervals. For example, if I have the following intervals ('['
and ']' means closed interval as in
http://en.wikipedia.org/wiki/Interval_(mathematics)#Excluding_the_endpoints)

[1, 3]
[2, 9]
[10,13]
[11,12]

I want to get the following merged intervals.

[1,9]
[10,13]

Could somebody let me know if there is a function in the python
library?

Steven D'Aprano

unread,
Feb 10, 2010, 7:26:40 PM2/10/10
to
On Wed, 10 Feb 2010 15:23:42 -0800, Peng Yu wrote:

> I'm wondering there is already a function in python library that can
> merge intervals. For example, if I have the following intervals ('[' and
> ']' means closed interval as in
> http://en.wikipedia.org/wiki/Interval_(mathematics)
#Excluding_the_endpoints)

Not in the standard library. There may be third-party libraries that do
it. Did you google "python interval"?


--
Steven

Nobody

unread,
Feb 10, 2010, 10:48:05 PM2/10/10
to
On Wed, 10 Feb 2010 15:23:42 -0800, Peng Yu wrote:

No, but try this:

def merge(intervals):
if not intervals:
return []
intervals = sorted(intervals, key = lambda x: x[0])
result = []
(a, b) = intervals[0]
for (x, y) in intervals[1:]:
if x <= b:
b = max(b, y)
else:
result.append((a, b))
(a, b) = (x, y)
result.append((a, b))
return result

Steve Holden

unread,
Feb 10, 2010, 11:03:29 PM2/10/10
to pytho...@python.org
Nobody wrote:
> On Wed, 10 Feb 2010 15:23:42 -0800, Peng Yu wrote:
>
>> I'm wondering there is already a function in python library that can
>> merge intervals. For example, if I have the following intervals ('['
>> and ']' means closed interval as in
>> http://en.wikipedia.org/wiki/Interval_(mathematics)#Excluding_the_endpoints)
>>
>> [1, 3]
>> [2, 9]
>> [10,13]
>> [11,12]
>>
>> I want to get the following merged intervals.
>>
>> [1,9]
>> [10,13]
>>
>> Could somebody let me know if there is a function in the python
>> library?
>
> No, but try this:
>
> def merge(intervals):
> if not intervals:
> return []
> intervals = sorted(intervals, key = lambda x: x[0])

Since Python uses lexical sorting and the intervals are lists isn't the
key specification redundant here?

> result = []
> (a, b) = intervals[0]
> for (x, y) in intervals[1:]:
> if x <= b:
> b = max(b, y)
> else:
> result.append((a, b))
> (a, b) = (x, y)
> result.append((a, b))
> return result
>

regards
Steve
--
Steve Holden +1 571 484 6266 +1 800 494 3119
PyCon is coming! Atlanta, Feb 2010 http://us.pycon.org/
Holden Web LLC http://www.holdenweb.com/
UPCOMING EVENTS: http://holdenweb.eventbrite.com/

Jonathan Gardner

unread,
Feb 11, 2010, 4:03:22 PM2/11/10
to
On Feb 10, 3:23 pm, Peng Yu <pengyu...@gmail.com> wrote:
> I'm wondering there is already a function in python library that can
> merge intervals. For example, if I have the following intervals ('['
> and ']' means closed interval as inhttp://en.wikipedia.org/wiki/Interval_(mathematics)#Excluding_the_end...)

>
> [1, 3]
> [2, 9]
> [10,13]
> [11,12]
>
> I want to get the following merged intervals.
>
> [1,9]
> [10,13]
>
> Could somebody let me know if there is a function in the python
> library?

I vaguely recall a similar question a long time ago. Peng, is this a
homework assignment?

Perhaps we should add a standard module called "homework". It can have
functions for all the different homework assignments we see on
c.l.python. We can simply point people to this module and then can
include the code in their answers.

Alf P. Steinbach

unread,
Feb 11, 2010, 4:37:46 PM2/11/10
to
* Jonathan Gardner:

If it's possible, there was/is this guy over in clc.c++ who responded/responds
to homework questions with the most advanced, convoluted and, except for
misleading names, technically correct solutions.


Cheers,

- Alf

Peter

unread,
Feb 11, 2010, 6:26:58 PM2/11/10
to
On Feb 12, 8:03 am, Jonathan Gardner <jgard...@jonathangardner.net>
wrote:

Good idea - that would (also) give the teachers a convenient place to
check for what assignments have been solved by this list so they can
propose something else.

They can also grade the submissions against the code kept in this area
- exact copies could receive an "F" (for example :-))

Peter

Nobody

unread,
Feb 11, 2010, 8:37:59 PM2/11/10
to
On Wed, 10 Feb 2010 23:03:29 -0500, Steve Holden wrote:

>> intervals = sorted(intervals, key = lambda x: x[0])
>
> Since Python uses lexical sorting and the intervals are lists isn't the
> key specification redundant here?

Yes, but I wanted to make it explicit.

Well, omitting the key= would change the sorting order in the event that
multiple intervals have the same start, but it still won't affect the
result of the function overall.

0 new messages