mirror of
https://github.com/TheAlgorithms/C.git
synced 2026-09-24 16:05:02 +00:00
dynamic array data structure
This commit is contained in:
79
data_structures/dynamic_array/dynamic_array.c
Normal file
79
data_structures/dynamic_array/dynamic_array.c
Normal file
@@ -0,0 +1,79 @@
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include "dynamic_array.h"
|
||||
|
||||
dynamic_array_t *init_dynamic_array()
|
||||
{
|
||||
dynamic_array_t *da = malloc(sizeof(dynamic_array_t));
|
||||
da->items = calloc(DEFAULT_CAPACITY, sizeof(void *));
|
||||
da->capacity = DEFAULT_CAPACITY;
|
||||
|
||||
return da;
|
||||
}
|
||||
|
||||
void *add(dynamic_array_t *da, const void *value)
|
||||
{
|
||||
if (da->size >= da->capacity) {
|
||||
void **newItems = realloc(da->items, (da->capacity <<= 1) * sizeof(void **));
|
||||
free(da->items);
|
||||
|
||||
da->items = newItems;
|
||||
}
|
||||
|
||||
void *copy_value = retrive_copy_of_value(value);
|
||||
da->items[da->size++] = copy_value;
|
||||
|
||||
return copy_value;
|
||||
}
|
||||
|
||||
void *put(dynamic_array_t *da, const void *value, const unsigned index)
|
||||
{
|
||||
if (!contains(da->size, index))
|
||||
return INDEX_OUT_OF_BOUNDS;
|
||||
|
||||
free(da->items[index]);
|
||||
void *copy_value = retrive_copy_of_value(value);
|
||||
da->items[index] = copy_value;
|
||||
|
||||
return copy_value;
|
||||
}
|
||||
|
||||
void *get(dynamic_array_t *da, const unsigned index)
|
||||
{
|
||||
if (!contains(da->size, index))
|
||||
return INDEX_OUT_OF_BOUNDS;
|
||||
|
||||
return da->items[index];
|
||||
}
|
||||
|
||||
void delete (dynamic_array_t *da, const unsigned index)
|
||||
{
|
||||
if (!contains(da->size, index))
|
||||
return;
|
||||
|
||||
for (unsigned i = index; i < da->size; i++) {
|
||||
da->items[i] = da->items[i + 1];
|
||||
}
|
||||
|
||||
da->size--;
|
||||
|
||||
free(da->items[da->size]);
|
||||
}
|
||||
|
||||
unsigned contains(const unsigned size, const unsigned index)
|
||||
{
|
||||
if (size >= 0 && index < size)
|
||||
return 1;
|
||||
|
||||
printf("index [%d] out of bounds!\n", index);
|
||||
return 0;
|
||||
}
|
||||
|
||||
void *retrive_copy_of_value(const void *value)
|
||||
{
|
||||
void *value_copy = malloc(sizeof(void *));
|
||||
memcpy(value_copy, value, sizeof(void *));
|
||||
|
||||
return value_copy;
|
||||
}
|
||||
Reference in New Issue
Block a user