Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 792 Bytes

README.md

File metadata and controls

21 lines (13 loc) · 792 Bytes

rhi build test

Implementation of linear probing hash table using LCFS hashing

This library is a C implementation of set and map data structure with raw pointer-type key and value.

Algorithm Illustration

Features

(...)

Usage

(...)

struct rhis* set = rhis_set(hash, equal, RHI_SHRINK|RHI_EXTED);
if( rhis_search(set, "Hello") )
  printf("Hello World");