]> git.seodisparate.com - SimpleArchiver/commit
Impl. hash_map
authorStephen Seo <seo.disparate@gmail.com>
Fri, 28 Jun 2024 08:31:34 +0000 (17:31 +0900)
committerStephen Seo <seo.disparate@gmail.com>
Fri, 28 Jun 2024 08:31:34 +0000 (17:31 +0900)
commit4d260e4a7b5cc095a33b4f4ca83bb65f1b5bfc7f
tree7f37c4e6fb06e93f8b5d4ce4c73e0aa02b2486b4
parent6ac7edbb3bf947d74c0d18f21509e7b035097392
Impl. hash_map

Also implemented the linear congruential generator algorithm for
generating hash values for the hash_map.

Tweaks to linked_list api to support "check functions" with supplied
user data.
CMakeLists.txt
cosmopolitan/Makefile
src/algorithms/linear_congruential_gen.c [new file with mode: 0644]
src/algorithms/linear_congruential_gen.h [new file with mode: 0644]
src/data_structures/hash_map.c [new file with mode: 0644]
src/data_structures/hash_map.h [new file with mode: 0644]
src/data_structures/linked_list.c
src/data_structures/linked_list.h
src/data_structures/test.c