rust-algorithm-club
rust-algorithm-club copied to clipboard
Associative container variants
Here are some associative container variants that needs well-documented implementations and tutorials.
- [ ] Multimap
- [ ] Ordered Map
- [x] Set #15
- [x] Bloom filter #34
Feel free to pick the one you like and leave comments below. Hands on coding!
I would like to try Set!
@choznerol That's awesome!
@choznerol
If possible, I would like to see an implementation with some basic operations of set. For instance, Python 3 allows intersection of two sets be computed with BitAnd &
operator, and compute symmetric difference with BitXor ^
. Here is Python.set reference.
If you encounter any problem, leave comments to me. I am willing to help.
sound cool! I've added them to the HackMD draft (link available in #15)
Tutorial of Set would be tracked under #20