Difference between revisions of "Thread:Talk:Rolling Averages/Rolling KD-Tree?/reply (3)"
Jump to navigation
Jump to search
(Reply to Rolling KD-Tree?) |
m |
||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
− | Adding point removal isn't hard, the hard thing is to keep the right tree structure, which I haven't seen in most implementation. | + | Adding point removal isn't hard, the hard thing is to keep the right tree structure, which I haven't seen in most implementation, which is necessary to keep the tree performant. |
− | Removing a point is essentially | + | Removing a point is essentially: |
+ | # search it as normal. | ||
+ | # iterate through each of the bucket and erases it. |
Latest revision as of 05:37, 8 August 2021
Adding point removal isn't hard, the hard thing is to keep the right tree structure, which I haven't seen in most implementation, which is necessary to keep the tree performant.
Removing a point is essentially:
- search it as normal.
- iterate through each of the bucket and erases it.