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,7 @@
#include "vector_tree.h"
struct vector *insert(struct vector *tree, int value);
void delete_node(struct vector *tree, int value);
void pretty_print(struct vector *tree);