/data_structures_c

Just me learning how to do certain data structures in C

Primary LanguageC

data_structures_c

Just me learning how to do certain data structures in C

Currently implemented data structures

Hash table

Associative array lookup in O(1) time.*

*Note: worst case is actually O(n) due to collision chaining

Linked list

The best way to insert and remove data efficiently