feat(linked list): added linked list datastructure, initialization and destruction
This commit is contained in:
parent
09f36bfeb3
commit
ffdb897cda
23 changed files with 151 additions and 12 deletions
BIN
.cache/clangd/index/Allocator.h.1762D0145907E8DC.idx
Normal file
BIN
.cache/clangd/index/Allocator.h.1762D0145907E8DC.idx
Normal file
Binary file not shown.
BIN
.cache/clangd/index/DynamicArray.c.4AD21698FC6EDB91.idx
Normal file
BIN
.cache/clangd/index/DynamicArray.c.4AD21698FC6EDB91.idx
Normal file
Binary file not shown.
BIN
.cache/clangd/index/DynamicArray.h.83D0CABD35D124C4.idx
Normal file
BIN
.cache/clangd/index/DynamicArray.h.83D0CABD35D124C4.idx
Normal file
Binary file not shown.
BIN
.cache/clangd/index/Error.h.EB9FC54DFDA17FC2.idx
Normal file
BIN
.cache/clangd/index/Error.h.EB9FC54DFDA17FC2.idx
Normal file
Binary file not shown.
BIN
.cache/clangd/index/Error.h.F8351C3B8B3344C7.idx
Normal file
BIN
.cache/clangd/index/Error.h.F8351C3B8B3344C7.idx
Normal file
Binary file not shown.
BIN
.cache/clangd/index/LinkedList.c.D81166C9F6E527C3.idx
Normal file
BIN
.cache/clangd/index/LinkedList.c.D81166C9F6E527C3.idx
Normal file
Binary file not shown.
BIN
.cache/clangd/index/LinkedList.h.874993982F1D060C.idx
Normal file
BIN
.cache/clangd/index/LinkedList.h.874993982F1D060C.idx
Normal file
Binary file not shown.
BIN
.cache/clangd/index/Main.c.3B29896BB83AC389.idx
Normal file
BIN
.cache/clangd/index/Main.c.3B29896BB83AC389.idx
Normal file
Binary file not shown.
BIN
.cache/clangd/index/Memory.h.4C603E058198611C.idx
Normal file
BIN
.cache/clangd/index/Memory.h.4C603E058198611C.idx
Normal file
Binary file not shown.
BIN
.cache/clangd/index/Queue.c.05F0749C9DEA8BEB.idx
Normal file
BIN
.cache/clangd/index/Queue.c.05F0749C9DEA8BEB.idx
Normal file
Binary file not shown.
BIN
.cache/clangd/index/Queue.h.0FDB3A51CACEA373.idx
Normal file
BIN
.cache/clangd/index/Queue.h.0FDB3A51CACEA373.idx
Normal file
Binary file not shown.
BIN
.cache/clangd/index/Stack.c.C4C7FD383A3A2CFD.idx
Normal file
BIN
.cache/clangd/index/Stack.c.C4C7FD383A3A2CFD.idx
Normal file
Binary file not shown.
BIN
.cache/clangd/index/Stack.h.FBE39392F0B9E960.idx
Normal file
BIN
.cache/clangd/index/Stack.h.FBE39392F0B9E960.idx
Normal file
Binary file not shown.
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -1 +1,2 @@
|
|||
Build
|
||||
Build
|
||||
compile_commands.json
|
||||
|
|
@ -21,13 +21,13 @@
|
|||
* Author: Mineplay
|
||||
* -----------------------------------------------------------------------------
|
||||
*/
|
||||
#ifndef FLEDASTY_DYNAMIC_ARRAY
|
||||
#define FLEDASTY_DYNAMIC_ARRAY
|
||||
#ifndef FLEDASTY_DYNAMIC_ARRAY
|
||||
#define FLEDASTY_DYNAMIC_ARRAY
|
||||
|
||||
#include <stddef.h>
|
||||
#include <stddef.h>
|
||||
#include <stdbool.h>
|
||||
|
||||
#include "../Utils/Error.h"
|
||||
#include "../Utils/Error.h"
|
||||
|
||||
typedef struct {
|
||||
size_t size, capacity;
|
||||
|
|
@ -53,4 +53,4 @@ FledastyError fledasty_dynamic_array_remove_value(FledastyDynamicArray *current_
|
|||
bool fledasty_dynamic_array_has_value(const FledastyDynamicArray *current_dynamic_array, void *value);
|
||||
inline static bool fledasty_dynamic_array_is_empty(const FledastyDynamicArray *current_dynamic_array) { return current_dynamic_array->size == 0; }
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
|
|
|||
44
Include/Fledasty/Core/LinkedList.h
Normal file
44
Include/Fledasty/Core/LinkedList.h
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
/*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*
|
||||
* -----------------------------------------------------------------------------
|
||||
* File: LinkedList.c
|
||||
* Description:
|
||||
* This file contains the functions for modifying the Linked List. It includes
|
||||
* functions to append, Insert before, Insert after, Insert at index,
|
||||
* Get, Remove element, Remove at index, Check if has element and Check if is empty.
|
||||
*
|
||||
* Author: Mineplay
|
||||
* -----------------------------------------------------------------------------
|
||||
*/
|
||||
#ifndef FLEDASTY_LINKED_LIST
|
||||
#define FLEDASTY_LINKED_LIST
|
||||
|
||||
#include <stddef.h>
|
||||
|
||||
#include "../Utils/Error.h"
|
||||
|
||||
typedef struct FledastyLinkedListNode{
|
||||
void *value;
|
||||
struct FledastyLinkedListNode *next;
|
||||
} FledastyLinkedListNode;
|
||||
|
||||
typedef struct {
|
||||
size_t size, element_byte_size;
|
||||
FledastyLinkedListNode *start, *end;
|
||||
} FledastyLinkedList;
|
||||
|
||||
FledastyError fledasty_linked_list_initialize(FledastyLinkedList *new_linked_list, void *values, const size_t values_size, const size_t element_byte_size);
|
||||
FledastyError fledasty_linked_list_destroy(FledastyLinkedList *current_linked_list);
|
||||
|
||||
#endif
|
||||
|
|
@ -45,4 +45,4 @@ void *fledasty_queue_pop(FledastyQueue *current_queue);
|
|||
|
||||
static inline bool fledasty_queue_is_empty(const FledastyQueue *current_queue) { return current_queue->size == 0; }
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -44,4 +44,4 @@ void *fledasty_stack_pop(FledastyStack *current_stack);
|
|||
|
||||
static inline bool fledasty_stack_is_empty(const FledastyStack *current_stack) { return current_stack->size == 0; }
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -192,7 +192,7 @@ FledastyError fledasty_dynamic_array_remove_at_index(FledastyDynamicArray *curre
|
|||
return FLEDASTY_ERROR_INDEX_OUT_OF_RANGE;
|
||||
}
|
||||
|
||||
void *index_pointer = current_dynamic_array->buffer + (index * current_dynamic_array->element_byte_size);
|
||||
unsigned char *index_pointer = current_dynamic_array->buffer + (index * current_dynamic_array->element_byte_size);
|
||||
hallocy_copy_memory(index_pointer, index_pointer + current_dynamic_array->element_byte_size, (current_dynamic_array->size + index) * current_dynamic_array->element_byte_size);
|
||||
current_dynamic_array->size -= 1;
|
||||
|
||||
|
|
@ -232,4 +232,4 @@ bool fledasty_dynamic_array_has_value(const FledastyDynamicArray *current_dynami
|
|||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
88
Src/Core/LinkedList.c
Normal file
88
Src/Core/LinkedList.c
Normal file
|
|
@ -0,0 +1,88 @@
|
|||
/*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*
|
||||
* -----------------------------------------------------------------------------
|
||||
* File: LinkedList.c
|
||||
* Description:
|
||||
* This file contains the functions for modifying the Linked List. It includes
|
||||
* functions to append, Insert before, Insert after, Insert at index,
|
||||
* Get, Remove element, Remove at index, Check if has element and Check if is empty.
|
||||
*
|
||||
* Author: Mineplay
|
||||
* -----------------------------------------------------------------------------
|
||||
*/
|
||||
#include "../../Include/Fledasty/Core/LinkedList.h"
|
||||
|
||||
#include <Hallocy/Core/Allocator.h>
|
||||
#include <Hallocy/Core/Memory.h>
|
||||
#include <Hallocy/Utils/Error.h>
|
||||
|
||||
FledastyError fledasty_linked_list_initialize(FledastyLinkedList *new_linked_list, void *values, const size_t values_size, const size_t element_byte_size) {
|
||||
if (new_linked_list == NULL) {
|
||||
return FLEDASTY_ERROR_FAILED_ALLOCATION;
|
||||
}
|
||||
|
||||
new_linked_list->element_byte_size = element_byte_size;
|
||||
if (values == NULL || values_size == 0) {
|
||||
new_linked_list->size = 0;
|
||||
new_linked_list->start = NULL;
|
||||
new_linked_list->end = NULL;
|
||||
} else {
|
||||
new_linked_list->size = values_size;
|
||||
|
||||
new_linked_list->start = (FledastyLinkedListNode*)hallocy_malloc(sizeof(FledastyLinkedListNode));
|
||||
new_linked_list->start->value = hallocy_malloc(new_linked_list->element_byte_size);
|
||||
hallocy_copy_memory(new_linked_list->start->value, values, new_linked_list->element_byte_size);
|
||||
new_linked_list->start->next = NULL;
|
||||
|
||||
FledastyLinkedListNode *last_node = new_linked_list->start;
|
||||
for (size_t index = new_linked_list->element_byte_size; index < new_linked_list->size * new_linked_list->element_byte_size; index += new_linked_list->element_byte_size) {
|
||||
FledastyLinkedListNode *new_node = (FledastyLinkedListNode*)hallocy_malloc(sizeof(FledastyLinkedListNode));
|
||||
new_node->value = hallocy_malloc(new_linked_list->element_byte_size);
|
||||
hallocy_copy_memory(new_node->value, (unsigned char*)values + index, new_linked_list->element_byte_size);
|
||||
|
||||
new_node->next = NULL;
|
||||
last_node->next = new_node;
|
||||
last_node = new_node;
|
||||
}
|
||||
|
||||
new_linked_list->end = last_node;
|
||||
}
|
||||
|
||||
return FLEDASTY_ERROR_NONE;
|
||||
}
|
||||
|
||||
FledastyError fledasty_linked_list_destroy(FledastyLinkedList *current_linked_list) {
|
||||
if (current_linked_list == NULL) {
|
||||
return FLEDASTY_ERROR_INVALID_POINTER;
|
||||
}
|
||||
|
||||
FledastyLinkedListNode *previous_node = NULL;
|
||||
FledastyLinkedListNode *current_node = current_linked_list->start;
|
||||
while (current_node != NULL) {
|
||||
previous_node = current_node;
|
||||
current_node = current_node->next;
|
||||
|
||||
HallocyError result = hallocy_free(previous_node->value);
|
||||
if (result == HALLOCY_ERROR_NONE) {
|
||||
return FLEDASTY_ERROR_FAILED_ALLOCATION;
|
||||
}
|
||||
|
||||
result = hallocy_free(previous_node);
|
||||
if (result == HALLOCY_ERROR_NONE) {
|
||||
return FLEDASTY_ERROR_FAILED_ALLOCATION;
|
||||
}
|
||||
}
|
||||
|
||||
return FLEDASTY_ERROR_NONE;
|
||||
}
|
||||
|
|
@ -124,4 +124,4 @@ void *fledasty_queue_pop(FledastyQueue *current_queue) {
|
|||
}
|
||||
|
||||
return value_address;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -106,4 +106,4 @@ void *fledasty_stack_pop(FledastyStack *current_stack) {
|
|||
current_stack->size -= 1;
|
||||
|
||||
return value_address;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -23,6 +23,7 @@
|
|||
#include <Fledasty/Core/Queue.h>
|
||||
#include <Fledasty/Core/Stack.h>
|
||||
#include <Fledasty/Core/DynamicArray.h>
|
||||
#include <Fledasty/Core/LinkedList.h>
|
||||
|
||||
int main() {
|
||||
FledastyQueue test_queue;
|
||||
|
|
@ -101,6 +102,11 @@ int main() {
|
|||
}
|
||||
|
||||
fledasty_dynamic_array_destroy(&test_dynamic_array);
|
||||
|
||||
FledastyLinkedList test_linked_list;
|
||||
fledasty_linked_list_initialize(&test_linked_list, (int[]){11, 12, 13, 14, 15}, 5, sizeof(int));
|
||||
|
||||
fledasty_linked_list_destroy(&test_linked_list);
|
||||
printf("Done\n");
|
||||
return 0;
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue