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
removemethod forRedBlackTree - Thread-safe implementations of
insert,remove, andfindfor both tree implementations - The performance optimized, unsafe versions of both 😈