ElectricRCAircraftGuy / eRCaGuy_hash_table

Hash table implementation in C; compatible with C++. Deterministic. Real-time. Safety critical.
MIT License
0 stars 0 forks source link
c hash hash-table hashing

eRCaGuy_hash_table

Hash table implementation in C; compatible with C++.

Status: NOT yet functional!

Design notes

See: https://github.com/ElectricRCAircraftGuy/eRCaGuy_hash_table/issues/1

For hash functions, plan on using MurmurHash3.

See also:

  1. https://benhoyt.com/writings/hash-table-in-c/
    1. https://github.com/benhoyt/ht
  2. [my answer] hash function for string
  3. Can CRC32 be used as a hash function?