dosart / Hash-table-using-C

Implementation hash table

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

cppcheck-action Valgrind

The project was made as part of the Coding Interview University course.

Hash-table-using-C

  • add - Add the given key and object to hash table. If key exists, update the value
  • exist - Returns true if the given key exists in the table
  • get - Returns the value associated with the given key, or NULL if it doesn't exist
  • max_count - Returns max count elements of hash table
  • count - Returns count elements of hash table
  • init - Init hash table data structure
  • free - Frees memory in data structure

About

Implementation hash table

License:MIT License


Languages

Language:C 95.9%Language:CMake 4.1%