diff options
author | oskar <[email protected]> | 2024-05-10 23:41:25 +0200 |
---|---|---|
committer | oskar <[email protected]> | 2024-05-10 23:41:25 +0200 |
commit | ec3079e3f4a0124c744ec7e5b7a3fe78d2bbca77 (patch) | |
tree | 3cee44f4f691751528d0e254370596f73ab87ca7 /test | |
parent | 3b2246ab2a255710a3ef02fb0f9f19dc92e528a7 (diff) |
Implemented doubly linked list, fixed issued with singly linked list. Added some nicer visualization for both of them.
Diffstat (limited to 'test')
-rw-r--r-- | test/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/Makefile b/test/Makefile new file mode 100644 index 0000000..48a5814 --- /dev/null +++ b/test/Makefile @@ -0,0 +1,6 @@ +all: release +clean: + cd .. && make clean + +release: + cd .. && make tests |