The interval-intersection tag has no wiki summary.
0
votes
2answers
78 views
Overlapping time intervals WITHOUT for/while loops
The best way to ask my question is via a clear example. Consider 2 timelines (e.g. time in seconds) A and B where the intervals for each timeline are:
intervals_a =
0 1
1 4
4 7
7 9
...
0
votes
3answers
255 views
Interval intersection
I wrote a class that checks whether two integer intevals overlap.
However I don't like this solution to much. I think that it's possible to do it in a better and simpler way.
public class ...
2
votes
1answer
253 views
Detecting overlapping date recurrence rules
I'm working in a application that looks like Google Calendar, but with one main difference: events shouldn't have intersections with other events. This means that no two events may share common time, ...
0
votes
2answers
833 views
Interval in c++
I have a 44100 samples audio data at the moment but this will be larger in size. This is saved in a file. I would like to make a interval of these while reading this from a file and doing some more ...
16
votes
9answers
10k views
A range intersection algorithm better than O(n)?
Range intersection is a simple, but non-trivial problem.
Its has been answered twice already:
http://stackoverflow.com/questions/224878/find-number-range-intersection
...