This commit is contained in:
2026-04-20 20:09:16 +02:00
commit a97f290271
22 changed files with 451 additions and 0 deletions
@@ -0,0 +1,16 @@
#ifndef VECTOR_TREE
#define VECTOR_TREE
#include <stddef.h>
struct vector {
int *values;
size_t size;
size_t nb_elements;
};
struct vector *insert(struct vector *tree, int value);
void delete_node(struct vector *tree, int value);
void pretty_print(struct vector *tree);
#endif /* ! VECTOR_TREE */