Skip to content

medhir/Lists_and_Hashtables

Repository files navigation

Lists_and_Hashtables

A collection of various List and Hashtable data structures written using C++

SSLL (Simple Singly Linked List)

A simple linked-list container implementation

PSLL (Pool-Using Singly Linked List)

A linked-list container implementation that uses a "pool" memory store to reduce memory allocation from the heap

SDAL (Simple Dynamic Array List)

A list container that uses a dynamic-array implementation

CDAL (Chained Dynamic Array List)

A list container that uses a node based linked-list implmentation, where each node contains an array with 50 slots.

Open addressing Hash map

Bucket-based Hash map

About

Various template-based list containers and hash tables, written in C++

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages