Tagged Questions
The interval-tree tag has no wiki summary.
8
votes
2answers
168 views
R-Tree Implementation Java
I was searching the last few days for a stable implementation of the R-Tree with support of unlimited dimensions (20 or so would be enough). I only found this http://sourceforge.net/projects/jsi/ but ...
7
votes
2answers
806 views
C++ - interval tree implementation
Does someone know any good interval tree implementation in C++?
Obviously, something template-driven, better in boost-like style.
And another question - if somebody tested, does a basic ...
6
votes
3answers
114 views
C# using others code
Iv'e downloaded a C# interval tree collection class class from here http://intervaltree.codeplex.com/SourceControl/list/changesets -> Right hand side -> Download.
However I can't open the whole ...
4
votes
1answer
1k views
Interval tree algorithm that supports merging of intervals with no overlap
I'm looking for an interval tree algorithm similar to the red-black interval tree in CLR but that supports merging of intervals by default so that there are never any overlapping intervals.
In other ...
3
votes
3answers
5k views
Help finding C++ interval tree algorithm implementation
I'm trying to find an efficient C++ interval tree implementation (mostly likely based on red black trees) without a viral or restrictive license. Any pointers to a clean lightweight standalone ...
2
votes
1answer
879 views
Maximum interval overlaps using an interval tree
Here is an interesting question: Given a set of N intervals ([start, end]), use an interval tree to find the maximum number of overlapping intervals. A similar question on StackOverflow provided an ...
2
votes
3answers
1k views
IntervalTree Java Implementation
I need an IntervalTree or RangeTree implementation in Java, and am having trouble finding one with working deletion support.
There's a built-in one at sun.jvm.hotspot.utilities.IntervalTree, but the ...
1
vote
1answer
77 views
2D interval tree using 1D ones
I'm using the C# interval tree collection class class from here http://intervaltree.codeplex.com/SourceControl/list/changesets -> right hand side -> download.
I need to get intervals from the ...
1
vote
1answer
954 views
Finding Overlap among multiple intervals
Let's say I have a list of intervals (or ranges) (Eg. 10-15, 5-7, 9-12..). The problem is to find the subset of ranges that overlaps. Of course I can use Interval tree for this.
The actual problem ...
0
votes
1answer
93 views
C# Interval tree class
I'm looking for an interval tree C# collection class.
I need to be able to add intervals, idealy 2D although I think otherwise I could nest two standard (1D) interval trees.
I also need to be able ...
0
votes
1answer
112 views
Range/Segment Tree Ruby
I am looking for a range or segment tree implementation in Ruby. I could not find any sample or gem available.
Does anyone have a sample code ?
Thanks,
0
votes
1answer
523 views