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.u
there's a c# implementation based on an augmented AVL tree @ http://code.google.com/p/intervaltree/ . translation to java shouldn't be too difficult.