This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
libflint:vectory [2025/02/27 00:07] – eburk | libflint:vectory [Unknown date] (current) – removed - external edit (Unknown date) 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== vector ====== | ||
- | |||
- | Simple type-agnostic dynamic array | ||
- | |||
- | ===== Structs ===== | ||
- | |||
- | ==== Vector ==== | ||
- | |||
- | Vector struct | ||
- | |||
- | <code c> | ||
- | typedef struct Vector { | ||
- | size_t capacity; | ||
- | size_t length; | ||
- | void **elements; | ||
- | void (*destroy)(void *data); | ||
- | } Vector; | ||
- | </ | ||
- | |||
- | Members: | ||
- | |||
- | * '' | ||
- | * '' | ||
- | * '' | ||
- | * '' | ||
- | |||
- | ===== Functions ===== | ||
- | |||
- | ==== vec_init ==== | ||
- | |||
- | Initialize the vector with a default capacity of 2. User is responsible for freeing elements of the vector with '' | ||
- | |||
- | <code c> | ||
- | int vec_init(Vector *vec, void (*destroy)(void *data)); | ||
- | </ | ||
- | |||
- | ==== vec_init_with_capacity ==== | ||
- | |||
- | Initialize the vector with a user-specified capacity. User is responsible for freeing elements of the vector with '' | ||
- | |||
- | <code c> | ||
- | int vec_init_with_capacity(Vector *vec, void (*destroy)(void *data), size_t cap); | ||
- | </ | ||
- | |||
- | ==== vec_clear ==== | ||
- | |||
- | Resets the Vector back to zero without freeing the Vector object itself. Useful for when the Vector is storing temporary objects in a loop | ||
- | |||
- | <code c> | ||
- | void vec_clear(Vector *vec); | ||
- | |||
- | /* Usage */ | ||
- | while (1) { | ||
- | int i = 1, int j = 2; | ||
- | | ||
- | vec_push(vec, | ||
- | vec_push(vec, | ||
- | assert(vec_len(vec) == 2); | ||
- | | ||
- | vec_clear(vec); | ||
- | assert(vec_len(vec) == 0); | ||
- | } | ||
- | </ | ||
- | |||
- | ==== vec_destroy ==== | ||
- | |||
- | Frees the underlying array inside a '' | ||
- | |||
- | <code c> | ||
- | void vec_destroy(Vector *vec); | ||
- | |||
- | /* Usage */ | ||
- | vec_destroy(vec); | ||
- | free(vec); | ||
- | </ | ||
- | |||
- | ==== vec_grow_to ==== | ||
- | |||
- | Grows the backing array to a provided size. Does not destroy any elements already added or shrink the backing array. Returns a non-zero integer if there is a failure. | ||
- | |||
- | <code c> | ||
- | void vec_grow_to(Vector *vec, size_t new_cap); | ||
- | |||
- | /* Usage */ | ||
- | vec_grow_to(vec, | ||
- | </ | ||
- | |||
- | ==== vec_insert ==== | ||
- | |||
- | Insert '' | ||
- | |||
- | <code c> | ||
- | int vec_insert(Vector *vec, void *data, size_t index); | ||
- | |||
- | /* Usage */ | ||
- | |||
- | // vec: 1 2 3 4 | ||
- | int i = 99; | ||
- | vec_insert(vec, | ||
- | // vec: 1 2 99 3 4 | ||
- | </ | ||
- | |||
- | ==== vec_push ==== | ||
- | |||
- | Insert '' | ||
- | |||
- | <code c> | ||
- | int vec_push(Vector *vec, void *data); | ||
- | |||
- | /* Usage */ | ||
- | |||
- | // vec: 1 2 3 | ||
- | int *i = malloc(sizeof(int)); | ||
- | *i = 4; | ||
- | vec_push(vec, | ||
- | // vec: 1 2 3 4 | ||
- | </ | ||
- | |||
- | ==== vec_safe_at ==== | ||
- | |||
- | Gets the stored data at a specified index. Uses safety checks to make sure '' | ||
- | |||
- | <code c> | ||
- | void *vec_safe_at(Vector *vec, size_t index); | ||
- | </ | ||
- | |||
- | ==== vec_remove ==== | ||
- | |||
- | Removes an element from the array and returns the pointer, then moves elements to shrink the array accordingly. Returns '' | ||
- | |||
- | <code c> | ||
- | void *vec_remove(Vector *vec, size_t index); | ||
- | |||
- | /* Usage */ | ||
- | // vec: 1 2 3 4 | ||
- | int *t = NULL; | ||
- | t = (int*)vec_remove(vec, | ||
- | assert(*t == 3); | ||
- | // vec: 1 2 4 | ||
- | </ | ||
- | |||
- | ==== vec_shrink ==== | ||
- | |||
- | Shrinks the capacity of the vector down to the current length. Returns a non-zero integer if there is an error | ||
- | |||
- | <code c> | ||
- | int vec_shrink(Vector *vec); | ||
- | </ | ||
- | |||
- | ==== vec_max ==== | ||
- | |||
- | Finds the largest value in the vector and returns a void pointer to the underlying data. Requires a comparison function to compare the data in the vector. This function must return '' | ||
- | |||
- | <code c> | ||
- | const void *vec_min(const Vector *vec, int(*cmp)(const void *a, const void *b)); | ||
- | </ | ||
- | |||
- | ==== vec_min ==== | ||
- | |||
- | Finds the smallest value in the vector and returns a void pointer to the underlying data. Requires a comparison function to compare the data in the vector. This function must return '' | ||
- | |||
- | <code c> | ||
- | const void *vec_max(const Vector *vec, int(*cmp)(const void *a, const void *b)); | ||
- | </ | ||
- | |||
- | ===== Comparison Functions ===== | ||
- | |||
- | Comparison functions to compare data in a vector. These functions must return '' | ||
- | |||
- | <code c> | ||
- | int vec_cmp_int(const void *a, const void *b); | ||
- | int vec_cmp_char(const void *a, const void *b); | ||
- | </ | ||
- | |||
- | ===== Macros ===== | ||
- | |||
- | ==== vec_at ==== | ||
- | |||
- | Grabs the element at index '' | ||
- | |||
- | <code c> | ||
- | #define vec_at(v, i) (v)-> | ||
- | </ | ||
- | |||
- | ==== vec_len ==== | ||
- | |||
- | Returns the length of the vector | ||
- | |||
- | <code c> | ||
- | #define vec_len(v) (v)-> | ||
- | </ | ||
- | |||
- | ==== vec_cap ==== | ||
- | |||
- | Returns the capacity of the vector | ||
- | |||
- | <code c> | ||
- | #define vec_cap(v) (v)-> | ||
- | </ | ||