Commit graph

65 commits

Author SHA1 Message Date
660e711b17 refactor: Added SHA256 to package description file. 2023-03-09 22:35:03 +00:00
7561a74793 refactor: Decided to not return char** in function that creates the package description after all, now returns char*.
The method I was trying started to irk me when I thought of creating a test unit for it. Also fixed some other issues I found in the package_to_description function (SHA256SUM section still missing).
2023-03-09 22:35:03 +00:00
01688fd546 fix: Took a very long time finding a very annyoing bug because realloc is the devil. 2023-03-09 22:35:03 +00:00
edca243331 refactor: Created function that will return the char ** (originally char *) that will be used to make the description file. Also removed free that was resulting in a crash. 2023-03-09 22:35:03 +00:00
4309ad8cc5 refactor: Modified .PKGINFO parser not to rely on gotos and continues. Parser is now optimistic and assumes .PKGINFO file is valid.
After my changes to the macros, they still feel a bit hacky, but I'm content with them. I also changed the parser to assume the .PKGINFO files are always valid because they are automatically generated. The parser also assumes the same fields will always appear in the same fixed order. I made this change after checking how makepkg generated this file.
2023-03-09 22:35:03 +00:00
c2313fe0be refactor: Add original .c package files by Jef. 2023-03-09 22:35:03 +00:00
f376aedaee Merge pull request 'Red-black tree' (#5) from Chewing_Bever/libvieter:red-black-tree into dev
Some checks are pending
ci/woodpecker/push/lint Pipeline is pending
ci/woodpecker/push/test-mem Pipeline is pending
ci/woodpecker/push/test Pipeline is pending
Reviewed-on: #5
2023-03-07 12:08:49 +01:00
38e84afd1d
fix: also lint internal header files
All checks were successful
ci/woodpecker/pr/lint Pipeline was successful
ci/woodpecker/pr/test Pipeline was successful
ci/woodpecker/pr/test-mem Pipeline was successful
2023-02-23 10:13:58 +01:00
d9402ced54 test(tree): add random insert test
All checks were successful
ci/woodpecker/pr/lint Pipeline was successful
ci/woodpecker/pr/test Pipeline was successful
ci/woodpecker/pr/test-mem Pipeline was successful
2023-02-02 15:52:59 +01:00
a6ed89d8cd
feat(tree): add tree iterator
All checks were successful
ci/woodpecker/pr/lint Pipeline was successful
ci/woodpecker/pr/test Pipeline was successful
ci/woodpecker/pr/test-mem Pipeline was successful
2023-02-02 14:10:35 +01:00
ef5037f941
chore(tree): some small cleanups
Some checks failed
ci/woodpecker/pr/test Pipeline was successful
ci/woodpecker/pr/test-mem Pipeline was successful
ci/woodpecker/pr/lint Pipeline failed
2023-02-01 23:24:22 +01:00
bee520a781
fix(tree): working balanced remove
All checks were successful
ci/woodpecker/pr/lint Pipeline was successful
ci/woodpecker/pr/test Pipeline was successful
ci/woodpecker/pr/test-mem Pipeline was successful
2023-02-01 23:04:35 +01:00
70217bee21
fix(tree): fix wrong rotation function 2023-02-01 22:12:34 +01:00
17c2e15385 feat(tree): first attempt at wikipedia pseudo code
Some checks are pending
ci/woodpecker/pr/lint Pipeline is pending
ci/woodpecker/pr/test-mem Pipeline is pending
ci/woodpecker/pr/test Pipeline is pending
2023-01-30 12:28:08 +01:00
1d458c68a4
feat(tree): start of balanced removal
Some checks are pending
ci/woodpecker/pr/lint Pipeline is pending
ci/woodpecker/pr/test-mem Pipeline is pending
ci/woodpecker/pr/test Pipeline is pending
2023-01-29 21:34:44 +01:00
b74a4e9326
refactor(tree): bit more cleanup
Some checks are pending
ci/woodpecker/pr/lint Pipeline is pending
ci/woodpecker/pr/test-mem Pipeline is pending
ci/woodpecker/pr/test Pipeline is pending
2023-01-29 21:08:17 +01:00
e5130a6383
feat(tree): bit flag so children know which child they are 2023-01-29 20:57:08 +01:00
193fc4b454
refactor(tree): store children as static array instead 2023-01-29 20:33:11 +01:00
06fca6f5ae
refactor(tree): better testing code 2023-01-29 17:32:27 +01:00
3fb027715c
test(tree): validation function to use in testing
Some checks failed
ci/woodpecker/pr/lint Pipeline was successful
ci/woodpecker/pr/test Pipeline failed
ci/woodpecker/pr/test-mem unknown status
2023-01-28 19:28:35 +01:00
89d1c9cdca chore: add license
Some checks are pending
ci/woodpecker/pr/lint Pipeline is pending
ci/woodpecker/pr/test-mem Pipeline is pending
ci/woodpecker/pr/test Pipeline is pending
2023-01-28 12:02:52 +01:00
3bf3150b4a
test: rename some stuff; separate cron part tests
All checks were successful
ci/woodpecker/pr/lint Pipeline was successful
ci/woodpecker/pr/test Pipeline was successful
ci/woodpecker/pr/test-mem Pipeline was successful
2023-01-28 09:30:35 +01:00
adfdca18da
docs(tree): add function docstrings
Some checks are pending
ci/woodpecker/pr/lint Pipeline is pending
ci/woodpecker/pr/test-mem Pipeline is pending
ci/woodpecker/pr/test Pipeline is pending
2023-01-28 09:09:17 +01:00
e4e92b3e57
refactor(tree): proper filenames
All checks were successful
ci/woodpecker/pr/lint Pipeline was successful
ci/woodpecker/pr/test Pipeline was successful
ci/woodpecker/pr/test-mem Pipeline was successful
2023-01-27 22:37:57 +01:00
1ce3b47edf
feat(tree): remove works 2023-01-27 22:37:57 +01:00
1c591ac423
feat(tree): first attempt at balanced inserts 2023-01-27 22:37:55 +01:00
41bc6516fa
feat(tree): add node bit flags support 2023-01-27 22:37:24 +01:00
910d7bc3bb
feat(tree): implement free function 2023-01-27 22:37:24 +01:00
935a610b7e
feat(tree): initially working binary tree 2023-01-27 22:37:23 +01:00
98f158e1f5
feat(tree): started standard binary tree 2023-01-27 22:35:06 +01:00
df50f96983
feat: begin binary tree implementation 2023-01-27 22:34:16 +01:00
379a05a7b6 Merge pull request 'Binomial heap' (#4) from Chewing_Bever/libvieter:min-heap into dev
Some checks are pending
ci/woodpecker/push/lint Pipeline is pending
ci/woodpecker/push/test-mem Pipeline is pending
ci/woodpecker/push/test Pipeline is pending
Reviewed-on: #4
2023-01-27 22:32:02 +01:00
167611e6fa
test(heap): test insert after every pop just in case
All checks were successful
ci/woodpecker/pr/lint Pipeline was successful
ci/woodpecker/pr/test Pipeline was successful
ci/woodpecker/pr/test-mem Pipeline was successful
2023-01-27 21:59:09 +01:00
5b2ce6acaa
feat(heap): thread-safety features
Some checks are pending
ci/woodpecker/pr/lint Pipeline is pending
ci/woodpecker/pr/test-mem Pipeline is pending
ci/woodpecker/pr/test Pipeline is pending
2023-01-27 21:23:32 +01:00
d77b3e4fee
chore: some nitpicking 2023-01-27 20:50:23 +01:00
ab418e57b3
test: also test with -O3 which can produce extra errors
All checks were successful
ci/woodpecker/pr/lint Pipeline was successful
ci/woodpecker/pr/test Pipeline was successful
ci/woodpecker/pr/test-mem Pipeline was successful
2023-01-26 12:24:34 +01:00
a6bdd39776
docs(heap): add readme
Some checks are pending
ci/woodpecker/pr/lint Pipeline is pending
ci/woodpecker/pr/test-mem Pipeline is pending
ci/woodpecker/pr/test Pipeline is pending
2023-01-26 11:03:41 +01:00
05b96d1fd6
fix(heap): finally fixed that pop bug
All checks were successful
ci/woodpecker/pr/lint Pipeline was successful
ci/woodpecker/pr/test Pipeline was successful
ci/woodpecker/pr/test-mem Pipeline was successful
2023-01-26 10:21:30 +01:00
3ec2e76af9
refactor(heap): some better variable names; some more tests 2023-01-25 22:12:22 +01:00
dc557f57ab
test(heap): some more tests to expose flaws
Some checks are pending
ci/woodpecker/pr/lint Pipeline is pending
ci/woodpecker/pr/test-mem Pipeline is pending
ci/woodpecker/pr/test Pipeline is pending
2023-01-25 20:49:18 +01:00
63100c5b99
test(heap): add random test that exposes some faults
Some checks failed
ci/woodpecker/pr/lint Pipeline was successful
ci/woodpecker/pr/test Pipeline failed
ci/woodpecker/pr/test-mem unknown status
2023-01-24 21:19:08 +01:00
6845e67cb6
feat(heap): possibly working pop 2023-01-24 21:02:29 +01:00
95d8c9972b
refactor(heap): combine tree and node into single struct 2023-01-24 17:22:11 +01:00
09c488aa0f
feat(heap): not quite working pop 2023-01-24 17:01:37 +01:00
6cf4eaaf0b
chore: separate target for each test binary
Some checks failed
ci/woodpecker/pr/lint Pipeline failed
ci/woodpecker/pr/test Pipeline was successful
ci/woodpecker/pr/test-mem Pipeline failed
2023-01-24 14:06:46 +01:00
3c8c33b47a
fix(heap): some insert fixes
Some checks failed
ci/woodpecker/pr/lint Pipeline failed
ci/woodpecker/pr/test Pipeline was successful
ci/woodpecker/pr/test-mem Pipeline was successful
2023-01-24 12:07:30 +01:00
c1ad26cf0c
feat(heap): initially working insert
Some checks failed
ci/woodpecker/pr/test Pipeline was successful
ci/woodpecker/pr/test-mem Pipeline was successful
ci/woodpecker/pr/lint Pipeline failed
2023-01-24 07:53:51 +01:00
16b78b8431 chore: improve ci lint
Some checks failed
ci/woodpecker/pr/lint Pipeline failed
ci/woodpecker/pr/test Pipeline was successful
ci/woodpecker/pr/test-mem Pipeline failed
2023-01-22 13:02:11 +01:00
0c673a2751 chore: make lint job check for warnings
Some checks failed
ci/woodpecker/pr/test Pipeline was successful
ci/woodpecker/pr/test-mem Pipeline failed
ci/woodpecker/pr/lint Pipeline failed
2023-01-22 12:46:09 +01:00
d11d074960 chore: some reorganising
Some checks failed
ci/woodpecker/pr/lint Pipeline was successful
ci/woodpecker/pr/test Pipeline was successful
ci/woodpecker/pr/test-mem Pipeline failed
2023-01-22 12:35:55 +01:00