Skip to content
#

interval-tree

Here are 52 public repositories matching this topic...

jblachly
jblachly commented Aug 21, 2020

Source of really hard to track down bugs.

Currently, all three tree implementations manage their own memory. Being containers, they copy in whatever object is passed to them. If this has, say, a string, with a pointer to the GC heap it may be reaped when its original reference goes out of scope, even though the tree holds on to it. Potential disaster. Of course this can be avoided by passing on

enhancement help wanted good first issue
EdgarACarneiro
EdgarACarneiro commented Mar 16, 2021

The current implementation does not allow the overriding of the FlatInterval.equals method since internally some FlatInterval objects are created to optimise data handling. As such, if one does override the equals method with the new properties, the search method brakes.

Possible solutions:

  • Stop creating FlatInterval objects inside the I2BplusTree and just use/ move around the va
bug good first issue

Improve this page

Add a description, image, and links to the interval-tree topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the interval-tree topic, visit your repo's landing page and select "manage topics."

Learn more