Skip to content

reshifr/rhi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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");