folks,

have heard of this problem quite some time back. thought of posting it, to get some views of doing this like using some construct or other efficient means(specialized trees may be)

Given a set of ranges in pairs (5,18) (12,23) (15,30)

split them into all possible subranges which are seen overlapping other ranges in the set. like (5,11) (12,14) (15,18) (19,23) (24,30)

thanks all, appreciate that...

rajan...

PS is this aa standard problem, if yes, would like tu know its name

link|improve this question

67% accept rate
Could you clarify your example a bit? Is (5,11),(12,14),(15,18),(19,23),(24,30) a complete answer to the input (5,18),(12,23),(15,30)? – aioobe Dec 1 '10 at 9:08
yes aioobe... its the complete solution – Rajan Dec 1 '10 at 17:12
feedback

1 Answer

Chuck all range endpoints into a list, but mark them as start/end-points.

[(5, S), (18, E), (12, S), (23, E), (15, S), (30, E)]

Sort them by position, breaking ties by putting start-points before end-points.

[(5, S), (12, S), (15, S), (18, E), (23, E), (30, E)]

Then you can work out the ranges by iterating through this list, keeping track of how many start- minus end-points we've processed so far. If we see a start point, that's a start of a new range to output. If our count is positive, we have to end to current range first though. If we see an end point, end the current range.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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