Improve hashmap performance
This commit is contained in:
parent
50a450e7c3
commit
2abff63fcd
3 changed files with 131 additions and 54 deletions
|
|
@ -18,7 +18,7 @@ Use shorter more concise names for common C types.
|
|||
|
||||
### Data structures
|
||||
- `Dynamic array`: A dynamic array that can grow and shrink in size.
|
||||
- `Hash map`: A hash map that uses linear probing for collision resolution and Murmur3 for hashing.
|
||||
- `Hash map`: A hash map that uses murmur3, open addressing (double hashing) and tombstone deletion.
|
||||
|
||||
## Building
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue