IntervalTree DeleteNode Java Implementation

前端 未结 5 1398
無奈伤痛
無奈伤痛 2021-02-06 08:14

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

5条回答
  •  天命终不由人
    2021-02-06 08:19

    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.

提交回复
热议问题