C++ - interval tree implementation

前端 未结 5 757
情话喂你
情话喂你 2020-12-01 05:35

Does someone know any good interval tree implementation in C++?

Obviously, something template-driven, better in boost-like style.<

5条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-01 05:52

    if you don't mind translating a c# implementation to c++, goto http://code.google.com/p/intervaltree/ .based on an avl self balancing tree.

提交回复
热议问题