It is failry similar to an insert operation, except it never generates a subtree.
Return false if the key is not found in the tree, true if it is.
Differential D2336
Implement delete function for the RadixTree deadalnix on Jan 18 2019, 00:52. Authored by
Details
It is failry similar to an insert operation, except it never generates a subtree. Return false if the key is not found in the tree, true if it is. Added test cases.
Diff Detail
Event Timeline
Comment Actions Add a synchronize after removing the element from the tree. As it turns out, we may delete the element we just inserted and have to ensure all other threads are past it for correctness. Not a hue deal because this code is going away anyways, but worth fixing for correctness. |