Skip to content

Latest commit

 

History

History
5 lines (4 loc) · 256 Bytes

README.md

File metadata and controls

5 lines (4 loc) · 256 Bytes

Lu HashTable

The underlying hash table is implemented by linked lists and red-black trees. When the internal bucket exceeds a given threshold, it automatically converts from a linked list to a red-black tree. The test code is located in main.c

TEST