C# Interval tree class

前端 未结 5 1637
名媛妹妹
名媛妹妹 2020-12-17 05:51

I\'m looking for an interval tree C# collection class.

I need to be able to add intervals, idealy 2D, otherwise perhaps I could combine two standard 1D interval tree

5条回答
  •  借酒劲吻你
    2020-12-17 06:27

    I just wrote another implementation which can be found here: https://github.com/mbuchetics/RangeTree

    It also comes with an asynchronous version which rebuilds the tree using the Task Parallel Library (TPL).

提交回复
热议问题