Implement HashTable + fix some extra blank spaces, remove Bool type (using bool ...
authorBenjamin Auder <benjamin.auder@somewhere>
Wed, 3 Feb 2021 21:42:55 +0000 (22:42 +0100)
committerBenjamin Auder <benjamin.auder@somewhere>
Wed, 3 Feb 2021 21:42:55 +0000 (22:42 +0100)
commit1ff641f9960fa6c6081817a5641afb22fad91dcd
tree4bd1abc9d40f58f5837d1b4da426c41856705b7b
parent71e16e325e3936549a5f3a140e6298fce333fd27
Implement HashTable + fix some extra blank spaces, remove Bool type (using bool / C99)
32 files changed:
.gitignore
Makefile
src/BufferTop.c
src/BufferTop.h
src/HashTable.c [new file with mode: 0644]
src/HashTable.h [new file with mode: 0644]
src/Heap.c
src/Heap.h
src/List.c
src/List.h
src/PriorityQueue.c
src/PriorityQueue.h
src/Queue.c
src/Queue.h
src/Stack.c
src/Stack.h
src/Tree.c
src/Tree.h
src/Vector.c
src/Vector.h
src/cgds.h [moved from src/cds.h with 82% similarity]
src/safe_alloc.c
src/types.h
test/lut.h
test/main.c
test/t.BufferTop.c
test/t.HashTable.c [new file with mode: 0644]
test/t.Heap.c
test/t.PriorityQueue.c
test/t.Queue.c
test/t.Stack.c
test/t.Vector.c