|
|
892388c218
|
refactor(hash table): added const to some function parameters
|
2025-05-23 17:35:50 -05:00 |
|
|
|
fe84e39ac7
|
perf(dynamic array): made small improvements in performance when searching for values in a function
|
2025-05-23 17:27:56 -05:00 |
|
|
|
81f1c7d7ca
|
refactor(dynamic array): improved error handeling for allocating and freeing memory
|
2025-05-23 17:24:39 -05:00 |
|
|
|
a0cca7f696
|
feat(dynamic array): implemented shrink to fit function
|
2025-05-23 08:42:34 -05:00 |
|
|
|
b43b5c550d
|
perf(linked list): made same improvements to searching for value as in doubly linked list
|
2025-05-22 17:58:01 -05:00 |
|
|
|
31e9953bf7
|
perf(doubly linked list): made small improvements in performance when searching for values in a function
|
2025-05-22 17:54:22 -05:00 |
|
|
|
18c7f70fca
|
refactor(doubly linked list): changed method used for freeing memory on error
|
2025-05-20 07:07:04 -05:00 |
|
|
|
4134d55492
|
refactor(doubly linked list): improved allocation error handling
|
2025-05-20 05:23:25 -05:00 |
|
|
|
827723e725
|
refactor(data structures): removed unused includes
|
2025-05-19 03:56:43 -05:00 |
|
|
|
8dd77f8e39
|
fix(linked list): fixed memory leaks that happen when failed allocation error is thrown
|
2025-05-19 03:21:11 -05:00 |
|
|
|
4cfd56bcea
|
refactor(linked list): improved allocation error handling
|
2025-05-15 13:53:02 -05:00 |
|
|
|
ca59eec627
|
feat(queue): implemented schrink to fit function
|
2025-05-15 13:03:03 -05:00 |
|
|
|
349268068b
|
perf(stack): improved peek function by inlining it
|
2025-05-15 12:34:03 -05:00 |
|
|
|
06cc299160
|
perf(queue): improved peek function by inlining it
|
2025-05-15 12:33:07 -05:00 |
|
|
|
f7ac0e5192
|
feat(stack): implemented schrink to fit function
|
2025-05-15 12:28:54 -05:00 |
|
|
|
5f87686633
|
fix(stack): fixed reallocation size in push function
|
2025-05-15 12:20:45 -05:00 |
|
|
|
b8baffdb39
|
Merge pull request 'f7-utf-8-string' (#23) from f7-utf-8-string into main
Reviewed-on: #23
|
2025-05-15 10:39:05 -05:00 |
|
|
|
200e3e0ccf
|
refactor(utf-8 string): added const to size and index parameters in functions
|
2025-05-15 10:36:51 -05:00 |
|
|
|
016bc759f3
|
feat(utf-8 string): implemented get size function
|
2025-05-15 10:33:24 -05:00 |
|
|
|
8b3be3d1cb
|
feat(utf-8 string): implemented remove range function
|
2025-05-15 10:31:39 -05:00 |
|
|
|
15abfcffe8
|
feat(utf-8 string): implemented remove function
|
2025-05-15 10:26:32 -05:00 |
|
|
|
681ca8f489
|
feat(utf-8 string): implemented clear function
|
2025-05-15 10:20:54 -05:00 |
|
|
|
6ccf2e70bf
|
feat(utf-8 string): implemented pop function
|
2025-05-15 10:17:00 -05:00 |
|
|
|
1ab803f0f2
|
refactor(utf-8 string): changed parameters name to use size instead of length to be more consistent
|
2025-05-13 07:47:05 -05:00 |
|
|
|
fbdebde492
|
feat(utf-8 string): implemented replace string function
|
2025-05-13 04:04:31 -05:00 |
|
|
|
0e67969ff1
|
feat(utf-8): implemented has string function
|
2025-05-12 14:48:39 -05:00 |
|
|
|
062d10805f
|
feat(utf-8 string): implemented is empty function
|
2025-05-12 05:56:18 -05:00 |
|
|
|
8e237dae14
|
feat(utf-8 string): implemented insert at index function
|
2025-05-12 04:23:23 -05:00 |
|
|
|
e4a0236328
|
feat(utf-8 string): implemented insert after function
|
2025-05-12 04:09:25 -05:00 |
|
|
|
bd9fef9f4f
|
feat(utf-8): implemented insert before function
|
2025-05-12 03:48:08 -05:00 |
|
|
|
243bb533b0
|
feat(utf-8 string): implemented append function
|
2025-05-11 16:39:01 -05:00 |
|
|
|
13a95d9027
|
feat(utf-8 string): implemented validation of utf-8 string
|
2025-05-11 15:24:45 -05:00 |
|
|
|
e9d8cdd8a3
|
feat(utf-8 string): implemented encoding and decoding of utf-8 string with unicode
|
2025-05-07 04:33:25 -05:00 |
|
|
|
2353358199
|
feat(utf-8 string): added setting value of utf-8 string through unsigned char*
|
2025-05-04 06:54:17 -05:00 |
|
|
|
c4db620fb4
|
feat(utf-8 string): added utf-8 string structure and implemented initialize and destroy
|
2025-05-02 08:09:46 -05:00 |
|
|
|
b9e4104468
|
Merge pull request 'f3-basic-hash-tabel' (#21) from f3-basic-hash-tabel into main
Reviewed-on: #21
|
2025-05-02 06:24:05 -05:00 |
|
|
|
52a81e6aee
|
feat(doubly linked list): implemented clear function
|
2025-05-02 06:19:22 -05:00 |
|
|
|
8a8909ab7f
|
feat(linked list): implemented clear function
|
2025-05-02 06:13:04 -05:00 |
|
|
|
3c8cc19cab
|
feat(stack): implemented clear function
|
2025-05-01 17:32:26 -05:00 |
|
|
|
0dfa753a56
|
feat(queue): implemented clear function
|
2025-05-01 17:30:53 -05:00 |
|
|
|
f0c224d879
|
feat(dynamic array): implemented clear function
|
2025-05-01 17:26:52 -05:00 |
|
|
|
5556948e2d
|
feat(hash table): implemented clear function
|
2025-05-01 17:16:08 -05:00 |
|
|
|
d6f635cb5a
|
feat(hash table): implemented has key function
|
2025-05-01 16:29:56 -05:00 |
|
|
|
448f37521d
|
feat(hash table): implemented is empty function
|
2025-05-01 16:20:44 -05:00 |
|
|
|
29b62b1df4
|
feat(hash table): implemented remove function
|
2025-05-01 15:37:55 -05:00 |
|
|
|
c83015c52f
|
feat(hash table): implemented get function
|
2025-05-01 14:51:27 -05:00 |
|
|
|
39010a65bc
|
feat(hash table): implemented insert function and changed table to dynamic array
|
2025-05-01 10:53:09 -05:00 |
|
|
|
2afa2131ee
|
feat(hash table): added hash table structure and implemented initialize and destroy
|
2025-05-01 09:42:11 -05:00 |
|
|
|
edc21fdf6b
|
Merge pull request 'f5-doubly-linked-list' (#20) from f5-doubly-linked-list into main
Reviewed-on: #20
|
2025-05-01 05:38:08 -05:00 |
|
|
|
19c9436ae0
|
feat(doubly linked list): implemented remove value function
|
2025-05-01 05:36:56 -05:00 |
|