Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-11-16 | Prefer mutative variant of delete for HashTable | William Carroll | 1 | -3/+16 | |
Instead of calling `filter(..)`. | |||||
2020-11-16 | Implement a simple hash function and hash table | William Carroll | 1 | -0/+59 | |
I was always curious how hashing functions were implemented, so I read about the "polynomial rolling hash function", and I decided implementing it would be a good exercise. After writing that, writing a hash table was simple. |