A basic project to cut my teeth on some rust development. I gravitated towards this project due to the challenge that recursive data structures presented in the language.
Note: This is not meant to be a fully performance tuned solution,
which would likely require the use of unsafe
blocks to achieve.
- Implementation of the
remove
method forRedBlackTree
- Thread-safe implementations of
insert
,remove
, andfind
for both tree implementations - The performance optimized, unsafe versions of both 😈